[][src]Struct vujio_server::WebSocket

pub struct WebSocket<S, H> { /* fields omitted */ }

endpoint/middleware handler for websockets in tide

This can either be used as a middleware or as an endpoint. Regardless of which approach is taken, the handler function provided to WebSocket::new is only called if the request correctly negotiates an upgrade to the websocket protocol.

As a middleware

If used as a middleware, the endpoint will be executed if the request is not a websocket upgrade.

Example

use async_std::prelude::*;
use tide_websockets::{Message, WebSocket};

#[async_std::main]
async fn main() -> Result<(), std::io::Error> {
    let mut app = tide::new();

    app.at("/ws")
        .with(WebSocket::new(|_request, mut stream| async move {
            while let Some(Ok(Message::Text(input))) = stream.next().await {
                let output: String = input.chars().rev().collect();

                stream
                    .send_string(format!("{} | {}", &input, &output))
                    .await?;
            }

            Ok(())
        }))
       .get(|_| async move { Ok("this was not a websocket request") });

    app.listen("127.0.0.1:8080").await?;
    Ok(())
}

As an endpoint

If used as an endpoint but the request is not a websocket request, tide will reply with a 426 Upgrade Required status code.

example

use async_std::prelude::*;
use tide_websockets::{Message, WebSocket};

#[async_std::main]
async fn main() -> Result<(), std::io::Error> {
    let mut app = tide::new();

    app.at("/ws")
        .get(WebSocket::new(|_request, mut stream| async move {
            while let Some(Ok(Message::Text(input))) = stream.next().await {
                let output: String = input.chars().rev().collect();

                stream
                    .send_string(format!("{} | {}", &input, &output))
                    .await?;
            }

            Ok(())
        }));

    app.listen("127.0.0.1:8080").await?;
    Ok(())
}

Implementations

impl<S, H, Fut> WebSocket<S, H> where
    S: Send + Sync + Clone + 'static,
    H: Fn(Request<S>, WebSocketConnection) -> Fut + Sync + Send + 'static,
    Fut: Future<Output = Result<(), Error>> + Send + 'static, 
[src]

pub fn new(handler: H) -> WebSocket<S, H>[src]

Build a new WebSocket with a handler function that

Trait Implementations

impl<S, H> Debug for WebSocket<S, H> where
    S: Debug,
    H: Debug
[src]

impl<H, S, Fut> Endpoint<S> for WebSocket<S, H> where
    S: Send + Sync + Clone + 'static,
    H: Fn(Request<S>, WebSocketConnection) -> Fut + Sync + Send + 'static,
    Fut: Future<Output = Result<(), Error>> + Send + 'static, 
[src]

impl<H, S, Fut> Middleware<S> for WebSocket<S, H> where
    S: Send + Sync + Clone + 'static,
    H: Fn(Request<S>, WebSocketConnection) -> Fut + Sync + Send + 'static,
    Fut: Future<Output = Result<(), Error>> + Send + 'static, 
[src]

Auto Trait Implementations

impl<S, H> RefUnwindSafe for WebSocket<S, H> where
    H: RefUnwindSafe,
    S: RefUnwindSafe
[src]

impl<S, H> Send for WebSocket<S, H> where
    H: Send + Sync,
    S: Send
[src]

impl<S, H> Sync for WebSocket<S, H> where
    H: Send + Sync,
    S: Sync
[src]

impl<S, H> Unpin for WebSocket<S, H> where
    S: Unpin
[src]

impl<S, H> UnwindSafe for WebSocket<S, H> where
    H: RefUnwindSafe,
    S: UnwindSafe
[src]

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> 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, 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>,