[−][src]Struct actix_web::ws::Client
WebSocket
client
Example of WebSocket
client usage is available in
websocket example
Methods
impl Client
[src]
impl Client
pub fn new<S: AsRef<str>>(uri: S) -> Client
[src]
pub fn new<S: AsRef<str>>(uri: S) -> Client
Create new websocket connection
pub fn with_connector<S: AsRef<str>>(
uri: S,
conn: Addr<ClientConnector>
) -> Client
[src]
pub fn with_connector<S: AsRef<str>>(
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]
pub fn protocols<U, V>(self, protos: U) -> Self where
U: IntoIterator<Item = V> + 'static,
V: AsRef<str>,
Set supported websocket protocols
Set cookie for handshake request
pub fn origin<V>(self, origin: V) -> Self where
HeaderValue: HttpTryFrom<V>,
[src]
pub fn origin<V>(self, origin: V) -> Self where
HeaderValue: HttpTryFrom<V>,
Set request Origin
pub fn max_frame_size(self, size: usize) -> Self
[src]
pub fn max_frame_size(self, size: usize) -> Self
Set max frame size
By default max size is set to 64kb
pub fn write_buffer_capacity(self, cap: usize) -> Self
[src]
pub fn write_buffer_capacity(self, cap: usize) -> Self
Set write buffer capacity
Default buffer capacity is 32kb
pub fn no_masking(self) -> Self
[src]
pub fn no_masking(self) -> Self
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]
pub fn header<K, V>(self, key: K, value: V) -> Self where
HeaderName: HttpTryFrom<K>,
V: IntoHeaderValue,
Set request header
pub fn timeout(self, timeout: Duration) -> Self
[src]
pub fn timeout(self, timeout: Duration) -> Self
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]
pub fn connect(&mut self) -> ClientHandshake
Connect to websocket server and do ws handshake
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more
impl<T> Erased for T
impl<T> Erased for T