[][src]Function requiem_web_actors::ws::start_with_protocols

pub fn start_with_protocols<A, T>(
    actor: A,
    protocols: &[&str],
    req: &HttpRequest,
    stream: T
) -> Result<HttpResponse, Error> where
    A: Actor<Context = WebsocketContext<A>> + StreamHandler<Result<Message, ProtocolError>>,
    T: Stream<Item = Result<Bytes, PayloadError>> + 'static, 

Do websocket handshake and start ws actor.

protocols is a sequence of known protocols.