[−][src]Struct libp2p_kad::handler::KademliaHandler
Protocol handler that handles Kademlia communications with the remote.
The handler will automatically open a Kademlia substream with the remote for each request we make.
It also handles requests made by the remote.
Methods
impl<TSubstream, TUserData> KademliaHandler<TSubstream, TUserData> where
TSubstream: AsyncRead + AsyncWrite,
[src]
TSubstream: AsyncRead + AsyncWrite,
pub fn dial_only() -> Self
[src]
Create a KademliaHandler
that only allows sending messages to the remote but denying
incoming connections.
pub fn dial_and_listen() -> Self
[src]
Create a KademliaHandler
that only allows sending messages but also receive incoming
requests.
The Default
trait implementation wraps around this function.
Trait Implementations
impl<TSubstream, TUserData> Default for KademliaHandler<TSubstream, TUserData> where
TSubstream: AsyncRead + AsyncWrite,
[src]
TSubstream: AsyncRead + AsyncWrite,
impl<TSubstream, TUserData> ProtocolsHandler for KademliaHandler<TSubstream, TUserData> where
TSubstream: AsyncRead + AsyncWrite,
TUserData: Clone,
[src]
TSubstream: AsyncRead + AsyncWrite,
TUserData: Clone,
type InEvent = KademliaHandlerIn<TUserData>
Custom event that can be received from the outside.
type OutEvent = KademliaHandlerEvent<TUserData>
Custom event that can be produced by the handler and that will be returned to the outside.
type Error = Error
Error that can happen when polling.
type Substream = TSubstream
The type of the substream that contains the raw data.
type InboundProtocol = EitherUpgrade<KademliaProtocolConfig, DeniedUpgrade>
The upgrade for the protocol or protocols handled by this handler.
type OutboundProtocol = KademliaProtocolConfig
The upgrade for the protocol or protocols handled by this handler.
type OutboundOpenInfo = (KadRequestMsg, Option<TUserData>)
Information about a substream. Can be sent to the handler through a NodeHandlerEndpoint
, and will be passed back in inject_substream
or inject_outbound_closed
. Read more
fn listen_protocol(&self) -> Self::InboundProtocol
[src]
fn inject_fully_negotiated_outbound(
&mut self,
protocol: <Self::OutboundProtocol as OutboundUpgrade<TSubstream>>::Output,
(msg, user_data): Self::OutboundOpenInfo
)
[src]
&mut self,
protocol: <Self::OutboundProtocol as OutboundUpgrade<TSubstream>>::Output,
(msg, user_data): Self::OutboundOpenInfo
)
fn inject_fully_negotiated_inbound(
&mut self,
protocol: <Self::InboundProtocol as InboundUpgrade<TSubstream>>::Output
)
[src]
&mut self,
protocol: <Self::InboundProtocol as InboundUpgrade<TSubstream>>::Output
)
fn inject_event(&mut self, message: KademliaHandlerIn<TUserData>)
[src]
fn inject_dial_upgrade_error(
&mut self,
(_, user_data): Self::OutboundOpenInfo,
error: ProtocolsHandlerUpgrErr<Error>
)
[src]
&mut self,
(_, user_data): Self::OutboundOpenInfo,
error: ProtocolsHandlerUpgrErr<Error>
)
fn connection_keep_alive(&self) -> KeepAlive
[src]
fn poll(
&mut self
) -> Poll<ProtocolsHandlerEvent<Self::OutboundProtocol, Self::OutboundOpenInfo, Self::OutEvent>, Error>
[src]
&mut self
) -> Poll<ProtocolsHandlerEvent<Self::OutboundProtocol, Self::OutboundOpenInfo, Self::OutEvent>, Error>
fn map_in_event<TNewIn, TMap>(self, map: TMap) -> MapInEvent<Self, TNewIn, TMap> where
TMap: Fn(&TNewIn) -> Option<&Self::InEvent>,
[src]
TMap: Fn(&TNewIn) -> Option<&Self::InEvent>,
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]
TMap: FnMut(Self::OutEvent) -> TNewOut,
Adds a closure that turns the output event into something else.
fn select<TProto2>(
self,
other: TProto2
) -> ProtocolsHandlerSelect<Self, TProto2>
[src]
self,
other: TProto2
) -> ProtocolsHandlerSelect<Self, TProto2>
Builds an implementation of ProtocolsHandler
that handles both this protocol and the other one together. Read more
fn into_node_handler_builder(self) -> NodeHandlerWrapperBuilder<Self>
[src]
Creates a builder that will allow creating a NodeHandler
that handles this protocol exclusively. Read more
fn into_node_handler(self) -> NodeHandlerWrapper<Self>
[src]
Use into_node_handler_builder instead
Builds an implementation of NodeHandler
that handles this protocol exclusively. Read more
Auto Trait Implementations
impl<TSubstream, TUserData> Send for KademliaHandler<TSubstream, TUserData> where
TSubstream: Send,
TUserData: Send,
TSubstream: Send,
TUserData: Send,
impl<TSubstream, TUserData> Sync for KademliaHandler<TSubstream, TUserData> where
TSubstream: Sync,
TUserData: Sync,
TSubstream: Sync,
TUserData: Sync,
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Same for T
type Output = T
Should always be Self
impl<T> Clear for T where
T: InitializableFromZeroed + ?Sized,
T: InitializableFromZeroed + ?Sized,
fn clear(&mut self)
impl<T> InitializableFromZeroed for T where
T: Default,
T: Default,
unsafe fn initialize(place: *mut T)
impl<T> IntoProtocolsHandler for T where
T: ProtocolsHandler,
[src]
T: ProtocolsHandler,
type Handler = T
The protocols handler.
fn into_handler(self, &PeerId) -> T
[src]
fn select<TProto2>(
self,
other: TProto2
) -> IntoProtocolsHandlerSelect<Self, TProto2>
[src]
self,
other: TProto2
) -> IntoProtocolsHandlerSelect<Self, TProto2>
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>
[src]
Creates a builder that will allow creating a NodeHandler
that handles this protocol exclusively. Read more