[][src]Struct thruster_socketio::SocketIO

pub struct SocketIO { /* fields omitted */ }

Implementations

impl SocketIOSocket[src]

pub fn new(
    id: String,
    sender: Sender<InternalMessage>,
    receiver: Receiver<InternalMessage>
) -> Self
[src]

pub fn id(&self) -> &str[src]

id returns the id for this particular socket.

pub fn use_handler(
    &self,
    _handler: fn(_: SocketIOSocket, _: String) -> Pin<Box<dyn Future<Output = Result<(), ()>> + Send>>
)
[src]

use_handler isn't implemented yet.

pub fn on(
    &mut self,
    event: &str,
    handler: fn(_: SocketIOSocket, _: String) -> Pin<Box<dyn Future<Output = Result<(), ()>> + Send>>
)
[src]

on adds a listener for a particular event

pub async fn join<'_, '_>(&'_ mut self, room_id: &'_ str)[src]

join joins a socket into a room. This makes every message sent by that socket go to the room rather than globally.

pub async fn leave<'_, '_>(&'_ mut self, room_id: &'_ str)[src]

leave removes a socket from a room. Note that you cannot remove a socket from its default room, i.e. its SID. This will result in a noop.

pub async fn send<'_, '_, '_>(&'_ self, event: &'_ str, message: &'_ str)[src]

send sends a message to this socket

pub async fn emit_to<'_, '_, '_, '_>(
    &'_ self,
    room_id: &'_ str,
    event: &'_ str,
    message: &'_ str
)
[src]

emit_to sends a message to all sockets connected to the given room_id, including the sending socket.

pub async fn broadcast_to<'_, '_, '_, '_>(
    &'_ self,
    room_id: &'_ str,
    event: &'_ str,
    message: &'_ str
)
[src]

broadcast_to sends a message to all the sockets connected to the given room_id, excluding the sending socket.

pub fn rooms(&self) -> &Vec<String>[src]

rooms returns all of the rooms this socket is currently in

Trait Implementations

impl Clone for SocketIOSocket[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,