[][src]Struct actix_web::ws::Client

pub struct Client { /* fields omitted */ }

WebSocket client

Example of WebSocket client usage is available in websocket example

Methods

impl Client[src]

pub fn new<S: AsRef<str>>(uri: S) -> Client[src]

Create new websocket connection

pub fn with_connector<S: AsRef<str>>(
    uri: S,
    conn: Addr<ClientConnector>
) -> Client
[src]

Create new websocket connection with custom ClientConnector

pub fn protocols<U, V>(self, protos: U) -> Self where
    U: IntoIterator<Item = V> + 'static,
    V: AsRef<str>, 
[src]

Set supported websocket protocols

pub fn cookie(self, cookie: Cookie) -> Self[src]

Set cookie for handshake request

pub fn origin<V>(self, origin: V) -> Self where
    HeaderValue: HttpTryFrom<V>, 
[src]

Set request Origin

pub fn max_frame_size(self, size: usize) -> Self[src]

Set max frame size

By default max size is set to 64kb

pub fn write_buffer_capacity(self, cap: usize) -> Self[src]

Set write buffer capacity

Default buffer capacity is 32kb

pub fn no_masking(self) -> Self[src]

Disable payload masking. By default ws client masks frame payload.

pub fn header<K, V>(self, key: K, value: V) -> Self where
    HeaderName: HttpTryFrom<K>,
    V: IntoHeaderValue, 
[src]

Set request header

pub fn timeout(self, timeout: Duration) -> Self[src]

Set websocket handshake timeout

Handshake timeout is a total time for successful handshake. Default value is 5 seconds.

pub fn connect(&mut self) -> ClientHandshake[src]

Connect to websocket server and do ws handshake

Auto Trait Implementations

impl !Send for Client

impl !Sync for Client

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<T> Erased for T