[−][src]Struct actix_web::ws::Client
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]
uri: S,
conn: Addr<ClientConnector>
) -> Client
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]
U: IntoIterator<Item = V> + 'static,
V: AsRef<str>,
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]
HeaderValue: HttpTryFrom<V>,
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]
HeaderName: HttpTryFrom<K>,
V: IntoHeaderValue,
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
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.