Struct dcl_rpc::server::RpcServer

source ·
pub struct RpcServer<Context> { /* private fields */ }
Expand description

RpcServer receives and process different requests from the RpcClient

Once a RpcServer is inited, you should attach a transport and handler for the port creation.

Implementations§

source§

impl<Context: Send + Sync + 'static> RpcServer<Context>

source

pub fn create(ctx: Context) -> Self

source

pub fn get_server_events_sender(&self) -> ServerEventsSender

Get a ServerEventsSender to send allowed server events from outside

source

pub fn attach_transport<T: Transport + Send + Sync + 'static>( &mut self, transport: T ) -> ServerResult<()>

Attaches the server half of the transport for Client<>Server communications

It differs from sending the ServerEvents::AtacchTransport because it can only be used to attach transport from the current thread where the RpcServer was initalized due to the mutably borrow

source

pub async fn run(&mut self)

Start processing ServerEvent events and listening on a channel for new TransportNotification that are sent by all the attached transports that are running in background tasks.

source

pub fn set_handler<H>(&mut self, handler: H)where H: Fn(&mut RpcServerPort<Context>) + Send + Sync + 'static,

Set a handler for the port creation

When a port is created, a service should be registered for the port.

Auto Trait Implementations§

§

impl<Context> !RefUnwindSafe for RpcServer<Context>

§

impl<Context> Send for RpcServer<Context>where Context: Send + Sync,

§

impl<Context> Sync for RpcServer<Context>where Context: Send + Sync,

§

impl<Context> Unpin for RpcServer<Context>

§

impl<Context> !UnwindSafe for RpcServer<Context>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more