[−][src]Struct jsonrpc_ws_server::ServerBuilder
Builder for WebSockets
server
Methods
impl<M: Metadata + Default, S: Middleware<M>> ServerBuilder<M, S>
[src]
pub fn new<T>(handler: T) -> Self where
T: Into<MetaIoHandler<M, S>>,
[src]
T: Into<MetaIoHandler<M, S>>,
Creates new ServerBuilder
impl<M: Metadata, S: Middleware<M>> ServerBuilder<M, S>
[src]
pub fn with_meta_extractor<T, E>(handler: T, extractor: E) -> Self where
T: Into<MetaIoHandler<M, S>>,
E: MetaExtractor<M>,
[src]
T: Into<MetaIoHandler<M, S>>,
E: MetaExtractor<M>,
Creates new ServerBuilder
pub fn event_loop_executor(self, executor: TaskExecutor) -> Self
[src]
Utilize existing event loop executor to poll RPC results.
pub fn session_meta_extractor<T: MetaExtractor<M>>(self, extractor: T) -> Self
[src]
Sets a meta extractor.
pub fn allowed_origins(self, allowed_origins: DomainsValidation<Origin>) -> Self
[src]
Allowed origins.
pub fn allowed_hosts(self, allowed_hosts: DomainsValidation<Host>) -> Self
[src]
Allowed hosts.
pub fn session_stats<T: SessionStats>(self, stats: T) -> Self
[src]
Session stats
pub fn request_middleware<T: RequestMiddleware>(self, middleware: T) -> Self
[src]
Sets a request middleware. Middleware will be invoked before each handshake request. You can either terminate the handshake in the middleware or run a default behaviour after.
pub fn max_connections(self, max_connections: usize) -> Self
[src]
Maximal number of concurrent connections this server supports. Default: 100
pub fn max_payload(self, max_payload_bytes: usize) -> Self
[src]
Maximal size of the payload (in bytes) Default: 5MB
pub fn start(self, addr: &SocketAddr) -> Result<Server>
[src]
Starts a new WebSocket
server in separate thread.
Returns a Server
handle which closes the server when droped.
Auto Trait Implementations
impl<M, S> Unpin for ServerBuilder<M, S>
impl<M, S> Sync for ServerBuilder<M, S>
impl<M, S> Send for ServerBuilder<M, S>
impl<M, S> !UnwindSafe for ServerBuilder<M, S>
impl<M, S> !RefUnwindSafe for ServerBuilder<M, S>
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> 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, U> TryInto<U> 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.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,