[][src]Struct xaynet_server::services::messages::PetMessageHandler

pub struct PetMessageHandler { /* fields omitted */ }

A service that processes requests from the beginning to the end.

The processing is divided in three phases:

  1. The raw request (which is just a vector of bytes represented an encrypted message) goes through the MessageParser service, which decrypt the message, validates it, and parses it

  2. The message is passed to the TaskValidator, which depending on the message type performs some additional checks. The TaskValidator may also discard the message

  3. Finally, the message is handled by the StateMachine service.

Implementations

impl PetMessageHandler[src]

pub fn new(
    event_subscriber: &EventSubscriber,
    requests_tx: RequestSender
) -> Self
[src]

pub async fn handle_message(
    &mut self,
    enc_data: Vec<u8>
) -> Result<(), ServiceError>
[src]

Trait Implementations

impl Clone for PetMessageHandler[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

impl<T> WithSubscriber for T[src]