Crate libp2p_stream

source ·
Expand description

Generic (stream) protocols

This module provides a generic NetworkBehaviour for stream-oriented protocols. Streams are the fundamental primitive of libp2p and all other protocols are implemented using streams. In contrast to other NetworkBehaviours, this module takes a different design approach. All interaction happens through a Control that can be obtained via Behaviour::new_control. Controls can be cloned and thus shared across your application.

Inbound

To accept streams for a particular StreamProtocol using this module, use Control::accept:

Example

let mut swarm: Swarm<stream::Behaviour> = todo!();

let mut control = swarm.behaviour().new_control();
let mut incoming = control.accept(StreamProtocol::new("/my-protocol")).unwrap();

let handler_future = async move {
    while let Some((peer, stream)) = incoming.next().await {
        // Execute your protocol using `stream`.
    }
};

Resource management

Control::accept returns you an instance of IncomingStreams. This struct implements Stream and like other streams, is lazy. You must continuously poll it to make progress. In the example above, this taken care of by using the StreamExt::next helper.

Internally, we will drop streams if your application falls behind in processing these incoming streams, i.e. if whatever loop calls .next() is not fast enough.

Drop

As soon as you drop IncomingStreams, the protocol will be de-registered. Any further attempt by remote peers to open a stream using the provided protocol will result in a negotiation error.

Outbound

To open a new outbound stream for a particular protocol, use Control::open_stream.

Example

let mut swarm: Swarm<stream::Behaviour> = todo!();
let peer_id: PeerId = todo!();

let mut control = swarm.behaviour().new_control();

let protocol_future = async move {
    let stream = control.open_stream(peer_id, StreamProtocol::new("/my-protocol")).await.unwrap();

    // Execute your protocol here using `stream`.
};

Structs

  • The protocol is already registered.
  • A generic behaviour for stream-oriented protocols.
  • A (remote) control for opening new streams and registration of inbound protocols.
  • A handle to inbound streams for a particular protocol.

Enums