[−][src]Struct libp2p_floodsub::Floodsub
Network behaviour that handles the floodsub protocol.
Implementations
impl Floodsub
[src]
pub fn new(local_peer_id: PeerId) -> Self
[src]
Creates a Floodsub
with default configuration.
pub fn from_config(config: FloodsubConfig) -> Self
[src]
Creates a Floodsub
with the given configuration.
pub fn add_node_to_partial_view(&mut self, peer_id: PeerId)
[src]
Add a node to the list of nodes to propagate messages to.
pub fn remove_node_from_partial_view(&mut self, peer_id: &PeerId)
[src]
Remove a node from the list of nodes to propagate messages to.
pub fn subscribe(&mut self, topic: Topic) -> bool
[src]
Subscribes to a topic.
Returns true if the subscription worked. Returns false if we were already subscribed.
pub fn unsubscribe(&mut self, topic: Topic) -> bool
[src]
Unsubscribes from a topic.
Note that this only requires the topic name.
Returns true if we were subscribed to this topic.
pub fn publish(&mut self, topic: impl Into<Topic>, data: impl Into<Vec<u8>>)
[src]
Publishes a message to the network, if we're subscribed to the topic only.
pub fn publish_any(&mut self, topic: impl Into<Topic>, data: impl Into<Vec<u8>>)
[src]
Publishes a message to the network, even if we're not subscribed to the topic.
pub fn publish_many(
&mut self,
topic: impl IntoIterator<Item = impl Into<Topic>>,
data: impl Into<Vec<u8>>
)
[src]
&mut self,
topic: impl IntoIterator<Item = impl Into<Topic>>,
data: impl Into<Vec<u8>>
)
Publishes a message with multiple topics to the network.
Note: Doesn't do anything if we're not subscribed to any of the topics.
pub fn publish_many_any(
&mut self,
topic: impl IntoIterator<Item = impl Into<Topic>>,
data: impl Into<Vec<u8>>
)
[src]
&mut self,
topic: impl IntoIterator<Item = impl Into<Topic>>,
data: impl Into<Vec<u8>>
)
Publishes a message with multiple topics to the network, even if we're not subscribed to any of the topics.
Trait Implementations
impl NetworkBehaviour for Floodsub
[src]
type ProtocolsHandler = OneShotHandler<FloodsubProtocol, FloodsubRpc, InnerMessage>
Handler for all the protocols the network behaviour supports.
type OutEvent = FloodsubEvent
Event generated by the NetworkBehaviour
and that the swarm will report back.
fn new_handler(&mut self) -> Self::ProtocolsHandler
[src]
fn addresses_of_peer(&mut self, _: &PeerId) -> Vec<Multiaddr>
[src]
fn inject_connected(&mut self, id: &PeerId)
[src]
fn inject_disconnected(&mut self, id: &PeerId)
[src]
fn inject_event(
&mut self,
propagation_source: PeerId,
_connection: ConnectionId,
event: InnerMessage
)
[src]
&mut self,
propagation_source: PeerId,
_connection: ConnectionId,
event: InnerMessage
)
fn poll(
&mut self,
_: &mut Context<'_>,
_: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<<Self::ProtocolsHandler as ProtocolsHandler>::InEvent, Self::OutEvent>>
[src]
&mut self,
_: &mut Context<'_>,
_: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<<Self::ProtocolsHandler as ProtocolsHandler>::InEvent, Self::OutEvent>>
fn inject_connection_established(
&mut self,
&PeerId,
&ConnectionId,
&ConnectedPoint
)
[src]
&mut self,
&PeerId,
&ConnectionId,
&ConnectedPoint
)
fn inject_connection_closed(&mut self, &PeerId, &ConnectionId, &ConnectedPoint)
[src]
fn inject_address_change(
&mut self,
&PeerId,
&ConnectionId,
_old: &ConnectedPoint,
_new: &ConnectedPoint
)
[src]
&mut self,
&PeerId,
&ConnectionId,
_old: &ConnectedPoint,
_new: &ConnectedPoint
)
fn inject_addr_reach_failure(
&mut self,
_peer_id: Option<&PeerId>,
_addr: &Multiaddr,
_error: &dyn Error
)
[src]
&mut self,
_peer_id: Option<&PeerId>,
_addr: &Multiaddr,
_error: &dyn Error
)
fn inject_dial_failure(&mut self, _peer_id: &PeerId)
[src]
fn inject_new_listen_addr(&mut self, _addr: &Multiaddr)
[src]
fn inject_expired_listen_addr(&mut self, _addr: &Multiaddr)
[src]
fn inject_new_external_addr(&mut self, _addr: &Multiaddr)
[src]
fn inject_listener_error(
&mut self,
_id: ListenerId,
_err: &(dyn Error + 'static)
)
[src]
&mut self,
_id: ListenerId,
_err: &(dyn Error + 'static)
)
fn inject_listener_closed(
&mut self,
_id: ListenerId,
_reason: Result<(), &Error>
)
[src]
&mut self,
_id: ListenerId,
_reason: Result<(), &Error>
)
Auto Trait Implementations
impl RefUnwindSafe for Floodsub
impl Send for Floodsub
impl Sync for Floodsub
impl Unpin for Floodsub
impl UnwindSafe for Floodsub
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T, U> TryFrom<U> 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, U> TryInto<U> 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<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,