Struct libp2p::kad::handler::KademliaHandler [−][src]
pub struct KademliaHandler<TUserData> { /* fields omitted */ }Expand description
Protocol handler that manages substreams for the Kademlia protocol on a single connection with a peer.
The handler will automatically open a Kademlia substream with the remote for each request we make.
It also handles requests made by the remote.
Implementations
pub fn new(
config: KademliaHandlerConfig,
endpoint: ConnectedPoint
) -> KademliaHandler<TUserData>[src]
pub fn new(
config: KademliaHandlerConfig,
endpoint: ConnectedPoint
) -> KademliaHandler<TUserData>[src]Create a KademliaHandler using the given configuration.
Trait Implementations
impl<TUserData> ProtocolsHandler for KademliaHandler<TUserData> where
TUserData: Clone + Send + 'static, [src]
impl<TUserData> ProtocolsHandler for KademliaHandler<TUserData> where
TUserData: Clone + Send + 'static, [src]type InEvent = KademliaHandlerIn<TUserData>
type InEvent = KademliaHandlerIn<TUserData>Custom event that can be received from the outside.
type OutEvent = KademliaHandlerEvent<TUserData>
type OutEvent = KademliaHandlerEvent<TUserData>Custom event that can be produced by the handler and that will be returned to the outside.
The type of errors returned by ProtocolsHandler::poll.
The inbound upgrade for the protocol(s) used by the handler.
The outbound upgrade for the protocol(s) used by the handler.
type OutboundOpenInfo = (KadRequestMsg, Option<TUserData>)
type OutboundOpenInfo = (KadRequestMsg, Option<TUserData>)The type of additional information passed to an OutboundSubstreamRequest.
type InboundOpenInfo = ()
type InboundOpenInfo = ()The type of additional information returned from listen_protocol.
pub fn listen_protocol(
&self
) -> SubstreamProtocol<<KademliaHandler<TUserData> as ProtocolsHandler>::InboundProtocol, <KademliaHandler<TUserData> as ProtocolsHandler>::InboundOpenInfo>[src]
pub fn listen_protocol(
&self
) -> SubstreamProtocol<<KademliaHandler<TUserData> as ProtocolsHandler>::InboundProtocol, <KademliaHandler<TUserData> as ProtocolsHandler>::InboundOpenInfo>[src]The InboundUpgrade to apply on inbound
substreams to negotiate the desired protocols. Read more
pub fn inject_fully_negotiated_outbound(
&mut self,
protocol: <<KademliaHandler<TUserData> as ProtocolsHandler>::OutboundProtocol as OutboundUpgrade<Negotiated<SubstreamRef<Arc<StreamMuxerBox>>>>>::Output,
<KademliaHandler<TUserData> as ProtocolsHandler>::OutboundOpenInfo
)[src]
pub fn inject_fully_negotiated_outbound(
&mut self,
protocol: <<KademliaHandler<TUserData> as ProtocolsHandler>::OutboundProtocol as OutboundUpgrade<Negotiated<SubstreamRef<Arc<StreamMuxerBox>>>>>::Output,
<KademliaHandler<TUserData> as ProtocolsHandler>::OutboundOpenInfo
)[src]Injects the output of a successful upgrade on a new outbound substream. Read more
pub fn inject_fully_negotiated_inbound(
&mut self,
protocol: <<KademliaHandler<TUserData> as ProtocolsHandler>::InboundProtocol as InboundUpgrade<Negotiated<SubstreamRef<Arc<StreamMuxerBox>>>>>::Output,
<KademliaHandler<TUserData> as ProtocolsHandler>::InboundOpenInfo
)[src]
pub fn inject_fully_negotiated_inbound(
&mut self,
protocol: <<KademliaHandler<TUserData> as ProtocolsHandler>::InboundProtocol as InboundUpgrade<Negotiated<SubstreamRef<Arc<StreamMuxerBox>>>>>::Output,
<KademliaHandler<TUserData> as ProtocolsHandler>::InboundOpenInfo
)[src]Injects the output of a successful upgrade on a new inbound substream.
Injects an event coming from the outside in the handler.
pub fn inject_dial_upgrade_error(
&mut self,
<KademliaHandler<TUserData> as ProtocolsHandler>::OutboundOpenInfo,
error: ProtocolsHandlerUpgrErr<Error>
)[src]
pub fn inject_dial_upgrade_error(
&mut self,
<KademliaHandler<TUserData> as ProtocolsHandler>::OutboundOpenInfo,
error: ProtocolsHandlerUpgrErr<Error>
)[src]Indicates to the handler that upgrading an outbound substream to the given protocol has failed.
Returns until when the connection should be kept alive. Read more
pub fn poll(
&mut self,
cx: &mut Context<'_>
) -> Poll<ProtocolsHandlerEvent<<KademliaHandler<TUserData> as ProtocolsHandler>::OutboundProtocol, <KademliaHandler<TUserData> as ProtocolsHandler>::OutboundOpenInfo, <KademliaHandler<TUserData> as ProtocolsHandler>::OutEvent, <KademliaHandler<TUserData> as ProtocolsHandler>::Error>>[src]
pub fn poll(
&mut self,
cx: &mut Context<'_>
) -> Poll<ProtocolsHandlerEvent<<KademliaHandler<TUserData> as ProtocolsHandler>::OutboundProtocol, <KademliaHandler<TUserData> as ProtocolsHandler>::OutboundOpenInfo, <KademliaHandler<TUserData> as ProtocolsHandler>::OutEvent, <KademliaHandler<TUserData> as ProtocolsHandler>::Error>>[src]Should behave like Stream::poll().
Notifies the handler of a change in the address of the remote.
fn inject_listen_upgrade_error(
&mut self,
Self::InboundOpenInfo,
ProtocolsHandlerUpgrErr<<Self::InboundProtocol as InboundUpgradeSend>::Error>
)[src]
fn inject_listen_upgrade_error(
&mut self,
Self::InboundOpenInfo,
ProtocolsHandlerUpgrErr<<Self::InboundProtocol as InboundUpgradeSend>::Error>
)[src]Indicates to the handler that upgrading an inbound substream to the given protocol has failed.
fn map_in_event<TNewIn, TMap>(self, map: TMap) -> MapInEvent<Self, TNewIn, TMap> where
TMap: Fn(&TNewIn) -> Option<&Self::InEvent>, [src]
fn map_in_event<TNewIn, TMap>(self, map: TMap) -> MapInEvent<Self, TNewIn, TMap> where
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
TMap: FnMut(Self::OutEvent) -> TNewOut, [src]
fn map_out_event<TMap, TNewOut>(self, map: TMap) -> MapOutEvent<Self, TMap> where
TMap: FnMut(Self::OutEvent) -> TNewOut, [src]Adds a closure that turns the output event into something else.
Creates a new ProtocolsHandler that selects either this handler or
other by delegating methods calls appropriately. Read more
Creates a builder that allows creating a NodeHandler that handles this protocol
exclusively. Read more
Auto Trait Implementations
impl<TUserData> !RefUnwindSafe for KademliaHandler<TUserData>impl<TUserData> Send for KademliaHandler<TUserData> where
TUserData: Send, impl<TUserData> Sync for KademliaHandler<TUserData> where
TUserData: Sync, impl<TUserData> Unpin for KademliaHandler<TUserData> where
TUserData: Unpin, impl<TUserData> !UnwindSafe for KademliaHandler<TUserData>Blanket Implementations
Mutably borrows from an owned value. Read more
type Handler = T
type Handler = TThe protocols handler.
Builds the protocols handler. Read more
pub fn inbound_protocol(
&self
) -> <<T as IntoProtocolsHandler>::Handler as ProtocolsHandler>::InboundProtocol[src]
pub fn inbound_protocol(
&self
) -> <<T as IntoProtocolsHandler>::Handler as ProtocolsHandler>::InboundProtocol[src]Return the handler’s inbound protocol.
Builds an implementation of IntoProtocolsHandler that handles both this protocol and the
other one together. Read more
Creates a builder that will allow creating a NodeHandler that handles this protocol
exclusively. Read more
pub fn vzip(self) -> V