[][src]Struct susyp2p_core::protocols_handler::OneShotHandler

pub struct OneShotHandler<TSubstream, TInProto, TOutProto, TOutEvent> where
    TOutProto: OutboundUpgrade<TSubstream>, 
{ /* fields omitted */ }

Implementation of ProtocolsHandler that opens a new substream for each individual message.

This struct is meant to be a helper for other implementations to use.

Methods

impl<TSubstream, TInProto, TOutProto, TOutEvent> OneShotHandler<TSubstream, TInProto, TOutProto, TOutEvent> where
    TOutProto: OutboundUpgrade<TSubstream>, 
[src]

pub fn new(
    listen_protocol: SubstreamProtocol<TInProto>,
    inactive_timeout: Duration
) -> Self
[src]

Creates a OneShotHandler.

pub fn pending_requests(&self) -> u32[src]

Returns the number of pending requests.

pub fn listen_protocol_ref(&self) -> &SubstreamProtocol<TInProto>[src]

Returns a reference to the listen protocol configuration.

Note: If you modify the protocol, modifications will only applies to future inbound substreams, not the ones already being negotiated.

pub fn listen_protocol_mut(&mut self) -> &mut SubstreamProtocol<TInProto>[src]

Returns a mutable reference to the listen protocol configuration.

Note: If you modify the protocol, modifications will only applies to future inbound substreams, not the ones already being negotiated.

pub fn send_request(&mut self, upgrade: TOutProto)[src]

Opens an outbound substream with upgrade.

Trait Implementations

impl<TSubstream, TInProto, TOutProto, TOutEvent> ProtocolsHandler for OneShotHandler<TSubstream, TInProto, TOutProto, TOutEvent> where
    TSubstream: AsyncRead + AsyncWrite,
    TInProto: InboundUpgrade<TSubstream>,
    TOutProto: OutboundUpgrade<TSubstream>,
    TInProto::Output: Into<TOutEvent>,
    TOutProto::Output: Into<TOutEvent>,
    TOutProto::Error: Error + 'static,
    SubstreamProtocol<TInProto>: Clone
[src]

type InEvent = TOutProto

Custom event that can be received from the outside.

type OutEvent = TOutEvent

Custom event that can be produced by the handler and that will be returned to the outside.

type Error = ProtocolsHandlerUpgrErr<<Self::OutboundProtocol as OutboundUpgrade<Self::Substream>>::Error>

The type of errors returned by ProtocolsHandler::poll.

type Substream = TSubstream

The type of substreams on which the protocol(s) are negotiated.

type InboundProtocol = TInProto

The inbound upgrade for the protocol(s) used by the handler.

type OutboundProtocol = TOutProto

The outbound upgrade for the protocol(s) used by the handler.

type OutboundOpenInfo = ()

The type of additional information passed to an OutboundSubstreamRequest.

fn map_in_event<TNewIn, TMap>(self, map: TMap) -> MapInEvent<Self, TNewIn, TMap> where
    Self: Sized,
    TMap: Fn(&TNewIn) -> Option<&Self::InEvent>, 
[src]

Adds a closure that turns the input event into something else.

fn map_out_event<TMap, TNewOut>(self, map: TMap) -> MapOutEvent<Self, TMap> where
    Self: Sized,
    TMap: FnMut(Self::OutEvent) -> TNewOut, 
[src]

Adds a closure that turns the output event into something else.

fn select<TProto2>(
    self,
    other: TProto2
) -> ProtocolsHandlerSelect<Self, TProto2> where
    Self: Sized
[src]

Creates a new ProtocolsHandler that selects either this handler or other by delegating methods calls appropriately. Read more

fn into_node_handler_builder(self) -> NodeHandlerWrapperBuilder<Self> where
    Self: Sized
[src]

Creates a builder that allows creating a NodeHandler that handles this protocol exclusively. Read more

fn into_node_handler(self) -> NodeHandlerWrapper<Self> where
    Self: Sized
[src]

Deprecated:

Use into_node_handler_builder instead

Builds an implementation of NodeHandler that handles this protocol exclusively. Read more

impl<TSubstream, TInProto, TOutProto, TOutEvent> Default for OneShotHandler<TSubstream, TInProto, TOutProto, TOutEvent> where
    TOutProto: OutboundUpgrade<TSubstream>,
    TInProto: InboundUpgrade<TSubstream> + Default
[src]

Auto Trait Implementations

impl<TSubstream, TInProto, TOutProto, TOutEvent> Send for OneShotHandler<TSubstream, TInProto, TOutProto, TOutEvent> where
    TInProto: Send,
    TOutEvent: Send,
    TOutProto: Send,
    TSubstream: Send,
    <TOutProto as OutboundUpgrade<TSubstream>>::Error: Send

impl<TSubstream, TInProto, TOutProto, TOutEvent> Sync for OneShotHandler<TSubstream, TInProto, TOutProto, TOutEvent> where
    TInProto: Sync,
    TOutEvent: Sync,
    TOutProto: Sync,
    TSubstream: Sync,
    <TOutProto as OutboundUpgrade<TSubstream>>::Error: Sync

Blanket Implementations

impl<T> IntoProtocolsHandler for T where
    T: ProtocolsHandler
[src]

type Handler = T

The protocols handler.

fn select<TProto2>(
    self,
    other: TProto2
) -> IntoProtocolsHandlerSelect<Self, TProto2> where
    Self: Sized
[src]

Builds an implementation of IntoProtocolsHandler that handles both this protocol and the other one together. Read more

fn into_node_handler_builder(self) -> NodeHandlerWrapperBuilder<Self> where
    Self: Sized
[src]

Creates a builder that will allow creating a NodeHandler that handles this protocol exclusively. Read more

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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<T> Borrow for T where
    T: ?Sized
[src]

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

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

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Clear for T where
    T: InitializableFromZeroed + ?Sized

impl<T> InitializableFromZeroed for T where
    T: Default

impl<T> Erased for T