pub struct Network<TTrans, TInEvent, TOutEvent, THandler>where
TTrans: Transport,
THandler: IntoConnectionHandler,{ /* private fields */ }
Expand description
Implementation of Stream
that handles the nodes.
Implementations§
Source§impl<TTrans, TInEvent, TOutEvent, TMuxer, THandler> Network<TTrans, TInEvent, TOutEvent, THandler>where
TTrans: Transport + Clone,
TMuxer: StreamMuxer,
THandler: IntoConnectionHandler + Send + 'static,
THandler::Handler: ConnectionHandler<Substream = Substream<TMuxer>, InEvent = TInEvent, OutEvent = TOutEvent> + Send,
<THandler::Handler as ConnectionHandler>::OutboundOpenInfo: Send,
<THandler::Handler as ConnectionHandler>::Error: Error + Send,
impl<TTrans, TInEvent, TOutEvent, TMuxer, THandler> Network<TTrans, TInEvent, TOutEvent, THandler>where
TTrans: Transport + Clone,
TMuxer: StreamMuxer,
THandler: IntoConnectionHandler + Send + 'static,
THandler::Handler: ConnectionHandler<Substream = Substream<TMuxer>, InEvent = TInEvent, OutEvent = TOutEvent> + Send,
<THandler::Handler as ConnectionHandler>::OutboundOpenInfo: Send,
<THandler::Handler as ConnectionHandler>::Error: Error + Send,
Sourcepub fn new(
transport: TTrans,
local_peer_id: PeerId,
config: NetworkConfig,
) -> Self
pub fn new( transport: TTrans, local_peer_id: PeerId, config: NetworkConfig, ) -> Self
Creates a new node events stream.
Sourcepub fn listen_on(
&mut self,
addr: Multiaddr,
) -> Result<ListenerId, TransportError<TTrans::Error>>
pub fn listen_on( &mut self, addr: Multiaddr, ) -> Result<ListenerId, TransportError<TTrans::Error>>
Start listening on the given multiaddress.
Sourcepub fn remove_listener(&mut self, id: ListenerId) -> Result<(), ()>
pub fn remove_listener(&mut self, id: ListenerId) -> Result<(), ()>
Remove a previously added listener.
Returns Ok(())
if a listener with this ID was in the list.
Sourcepub fn listen_addrs(&self) -> impl Iterator<Item = &Multiaddr>
pub fn listen_addrs(&self) -> impl Iterator<Item = &Multiaddr>
Returns an iterator that produces the list of addresses we are listening on.
Sourcepub fn address_translation<'a>(
&'a self,
observed_addr: &'a Multiaddr,
) -> impl Iterator<Item = Multiaddr> + 'awhere
TMuxer: 'a,
THandler: 'a,
pub fn address_translation<'a>(
&'a self,
observed_addr: &'a Multiaddr,
) -> impl Iterator<Item = Multiaddr> + 'awhere
TMuxer: 'a,
THandler: 'a,
Maps the given observed_addr
, representing an address of the local
node observed by a remote peer, onto the locally known listen addresses
to yield one or more addresses of the local node that may be publicly
reachable.
I.e. this method incorporates the view of other peers into the listen
addresses seen by the local node to account for possible IP and port
mappings performed by intermediate network devices in an effort to
obtain addresses for the local peer that are also reachable for peers
other than the peer who reported the observed_addr
.
The translation is transport-specific. See Transport::address_translation
.
Sourcepub fn local_peer_id(&self) -> &PeerId
pub fn local_peer_id(&self) -> &PeerId
Returns the peer id of the local node.
Sourcepub fn dial(
&mut self,
address: &Multiaddr,
handler: THandler,
) -> Result<ConnectionId, ConnectionLimit>
pub fn dial( &mut self, address: &Multiaddr, handler: THandler, ) -> Result<ConnectionId, ConnectionLimit>
Dials a multiaddress without expecting a particular remote peer ID.
The given handler
will be used to create the
Connection
upon success and the
connection ID is returned.
Sourcepub fn info(&self) -> NetworkInfo
pub fn info(&self) -> NetworkInfo
Returns information about the state of the Network
.
Sourcepub fn incoming_info(&self) -> impl Iterator<Item = IncomingInfo<'_>>
pub fn incoming_info(&self) -> impl Iterator<Item = IncomingInfo<'_>>
Returns an iterator for information on all pending incoming connections.
Sourcepub fn unknown_dials(&self) -> impl Iterator<Item = &Multiaddr>
pub fn unknown_dials(&self) -> impl Iterator<Item = &Multiaddr>
Returns the list of addresses we’re currently dialing without knowing the PeerId
of.
Sourcepub fn connected_peers(&self) -> impl Iterator<Item = &PeerId>
pub fn connected_peers(&self) -> impl Iterator<Item = &PeerId>
Returns a list of all connected peers, i.e. peers to whom the Network
has at least one established connection.
Sourcepub fn is_connected(&self, peer: &PeerId) -> bool
pub fn is_connected(&self, peer: &PeerId) -> bool
Checks whether the network has an established connection to a peer.
Sourcepub fn is_dialing(&self, peer: &PeerId) -> bool
pub fn is_dialing(&self, peer: &PeerId) -> bool
Checks whether the network has an ongoing dialing attempt to a peer.
Sourcepub fn is_disconnected(&self, peer: &PeerId) -> bool
pub fn is_disconnected(&self, peer: &PeerId) -> bool
Checks whether the network has neither an ongoing dialing attempt, nor an established connection to a peer.
Sourcepub fn dialing_peers(&self) -> impl Iterator<Item = &PeerId>
pub fn dialing_peers(&self) -> impl Iterator<Item = &PeerId>
Returns a list of all the peers to whom a new outgoing connection is currently being established.
Sourcepub fn peer(
&mut self,
peer_id: PeerId,
) -> Peer<'_, TTrans, TInEvent, TOutEvent, THandler>
pub fn peer( &mut self, peer_id: PeerId, ) -> Peer<'_, TTrans, TInEvent, TOutEvent, THandler>
Obtains a view of a Peer
with the given ID in the network.
Sourcepub fn accept(
&mut self,
connection: IncomingConnection<TTrans::ListenerUpgrade>,
handler: THandler,
) -> Result<ConnectionId, ConnectionLimit>where
TInEvent: Send + 'static,
TOutEvent: Send + 'static,
TMuxer: StreamMuxer + Send + Sync + 'static,
TMuxer::OutboundSubstream: Send,
TTrans: Transport<Output = (PeerId, TMuxer)>,
TTrans::Error: Send + 'static,
TTrans::ListenerUpgrade: Send + 'static,
pub fn accept(
&mut self,
connection: IncomingConnection<TTrans::ListenerUpgrade>,
handler: THandler,
) -> Result<ConnectionId, ConnectionLimit>where
TInEvent: Send + 'static,
TOutEvent: Send + 'static,
TMuxer: StreamMuxer + Send + Sync + 'static,
TMuxer::OutboundSubstream: Send,
TTrans: Transport<Output = (PeerId, TMuxer)>,
TTrans::Error: Send + 'static,
TTrans::ListenerUpgrade: Send + 'static,
Accepts a pending incoming connection obtained via NetworkEvent::IncomingConnection
,
adding it to the Network
s connection pool subject to the configured limits.
Once the connection is established and all transport protocol upgrades
completed, the connection is associated with the provided handler
.
Sourcepub fn poll<'a>(
&'a mut self,
cx: &mut Context<'_>,
) -> Poll<NetworkEvent<'a, TTrans, TInEvent, TOutEvent, THandler>>where
TTrans: Transport<Output = (PeerId, TMuxer)>,
TTrans::Error: Send + 'static,
TTrans::Dial: Send + 'static,
TTrans::ListenerUpgrade: Send + 'static,
TMuxer: Send + Sync + 'static,
TMuxer::OutboundSubstream: Send,
TInEvent: Send + 'static,
TOutEvent: Send + 'static,
THandler: IntoConnectionHandler + Send + 'static,
THandler::Handler: ConnectionHandler<Substream = Substream<TMuxer>, InEvent = TInEvent, OutEvent = TOutEvent> + Send + 'static,
<THandler::Handler as ConnectionHandler>::Error: Error + Send + 'static,
pub fn poll<'a>(
&'a mut self,
cx: &mut Context<'_>,
) -> Poll<NetworkEvent<'a, TTrans, TInEvent, TOutEvent, THandler>>where
TTrans: Transport<Output = (PeerId, TMuxer)>,
TTrans::Error: Send + 'static,
TTrans::Dial: Send + 'static,
TTrans::ListenerUpgrade: Send + 'static,
TMuxer: Send + Sync + 'static,
TMuxer::OutboundSubstream: Send,
TInEvent: Send + 'static,
TOutEvent: Send + 'static,
THandler: IntoConnectionHandler + Send + 'static,
THandler::Handler: ConnectionHandler<Substream = Substream<TMuxer>, InEvent = TInEvent, OutEvent = TOutEvent> + Send + 'static,
<THandler::Handler as ConnectionHandler>::Error: Error + Send + 'static,
Provides an API similar to Stream
, except that it cannot error.
Trait Implementations§
Source§impl<TTrans, TInEvent, TOutEvent, THandler> Debug for Network<TTrans, TInEvent, TOutEvent, THandler>
impl<TTrans, TInEvent, TOutEvent, THandler> Debug for Network<TTrans, TInEvent, TOutEvent, THandler>
impl<TTrans, TInEvent, TOutEvent, THandler> Unpin for Network<TTrans, TInEvent, TOutEvent, THandler>where
TTrans: Transport,
THandler: IntoConnectionHandler,
Auto Trait Implementations§
impl<TTrans, TInEvent, TOutEvent, THandler> !Freeze for Network<TTrans, TInEvent, TOutEvent, THandler>
impl<TTrans, TInEvent, TOutEvent, THandler> !RefUnwindSafe for Network<TTrans, TInEvent, TOutEvent, THandler>
impl<TTrans, TInEvent, TOutEvent, THandler> Send for Network<TTrans, TInEvent, TOutEvent, THandler>
impl<TTrans, TInEvent, TOutEvent, THandler> !Sync for Network<TTrans, TInEvent, TOutEvent, THandler>
impl<TTrans, TInEvent, TOutEvent, THandler> !UnwindSafe for Network<TTrans, TInEvent, TOutEvent, THandler>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more