Struct sota::gateway::websocket::WebsocketHandler
[−]
[src]
pub struct WebsocketHandler { // some fields omitted }
Trait Implementations
impl Handler for WebsocketHandler
[src]
fn on_message(&mut self, msg: Message) -> Result<()>
Called on incoming messages.
fn on_open(&mut self, _: Handshake) -> Result<()>
Called when the WebSocket handshake is successful and the connection is open for sending and receiving messages. Read more
fn on_close(&mut self, code: CloseCode, _: &str)
Called any time this endpoint receives a close control frame. This may be because the other endpoint is initiating a closing handshake, or it may be the other endpoint confirming the handshake initiated by this endpoint. Read more
fn on_error(&mut self, err: Error)
Called when an error occurs on the WebSocket.
fn on_shutdown(&mut self)
Called when a request to shutdown all connections has been received.
fn on_request(&mut self, req: &Request) -> Result<Response, Error>
A method for handling the low-level workings of the request portion of the WebSocket handshake. Read more
fn on_response(&mut self, res: &Response) -> Result<(), Error>
A method for handling the low-level workings of the response portion of the WebSocket handshake. Read more
fn on_timeout(&mut self, event: Token) -> Result<(), Error>
Called when a timeout is triggered. Read more
fn on_new_timeout(&mut self, Token, Timeout) -> Result<(), Error>
Called when a timeout has been scheduled on the eventloop. Read more
fn on_frame(&mut self, frame: Frame) -> Result<Option<Frame>, Error>
A method for handling incoming frames. Read more
fn on_send_frame(&mut self, frame: Frame) -> Result<Option<Frame>, Error>
A method for handling outgoing frames. Read more
fn build_request(&mut self, url: &Url) -> Result<Request, Error>
A method for creating the initial handshake request for WebSocket clients. Read more