pub struct ServerBuilder<M: Metadata = (), S: Middleware<M> = Noop> { /* private fields */ }
Expand description
IPC server builder
Implementations§
Source§impl<M: Metadata + Default, S: Middleware<M>> ServerBuilder<M, S>
impl<M: Metadata + Default, S: Middleware<M>> ServerBuilder<M, S>
Sourcepub fn new<T>(io_handler: T) -> ServerBuilder<M, S>where
T: Into<MetaIoHandler<M, S>>,
pub fn new<T>(io_handler: T) -> ServerBuilder<M, S>where
T: Into<MetaIoHandler<M, S>>,
Creates new IPC server build given the IoHandler
.
Source§impl<M: Metadata, S: Middleware<M>> ServerBuilder<M, S>
impl<M: Metadata, S: Middleware<M>> ServerBuilder<M, S>
Sourcepub fn with_meta_extractor<T, E>(
io_handler: T,
extractor: E,
) -> ServerBuilder<M, S>
pub fn with_meta_extractor<T, E>( io_handler: T, extractor: E, ) -> ServerBuilder<M, S>
Creates new IPC server build given the IoHandler
and metadata extractor.
Sourcepub fn event_loop_executor(self, executor: TaskExecutor) -> Self
pub fn event_loop_executor(self, executor: TaskExecutor) -> Self
Sets shared different event loop executor.
Sourcepub fn session_meta_extractor<X>(self, meta_extractor: X) -> Selfwhere
X: MetaExtractor<M>,
pub fn session_meta_extractor<X>(self, meta_extractor: X) -> Selfwhere
X: MetaExtractor<M>,
Sets session metadata extractor.
Sourcepub fn session_stats<T: SessionStats>(self, stats: T) -> Self
pub fn session_stats<T: SessionStats>(self, stats: T) -> Self
Session stats
Sourcepub fn request_separators(
self,
incoming: Separator,
outgoing: Separator,
) -> Self
pub fn request_separators( self, incoming: Separator, outgoing: Separator, ) -> Self
Sets the incoming and outgoing requests separator
Sourcepub fn set_security_attributes(self, attr: SecurityAttributes) -> Self
pub fn set_security_attributes(self, attr: SecurityAttributes) -> Self
Sets the security attributes for the underlying IPC socket/pipe
Sourcepub fn set_client_buffer_size(self, buffer_size: usize) -> Self
pub fn set_client_buffer_size(self, buffer_size: usize) -> Self
Sets how many concurrent requests per client can be processed at any one time. Set to 5 by default.
Auto Trait Implementations§
impl<M, S> Freeze for ServerBuilder<M, S>
impl<M = (), S = Noop> !RefUnwindSafe for ServerBuilder<M, S>
impl<M, S> Send for ServerBuilder<M, S>
impl<M, S> Sync for ServerBuilder<M, S>
impl<M, S> Unpin for ServerBuilder<M, S>
impl<M = (), S = Noop> !UnwindSafe for ServerBuilder<M, S>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more