Topic

Struct Topic 

Source
pub struct Topic { /* private fields */ }
Expand description

Handle to a joined gossip topic with auto-discovery.

Manages bootstrap, publishing, bubble detection, and split-brain recovery. Can be split into sender and receiver for message exchange.

Implementations§

Source§

impl Topic

Source

pub async fn new( record_publisher: RecordPublisher, gossip: Gossip, async_bootstrap: bool, ) -> Result<Self>

Create and initialize a new topic with auto-discovery.

§Arguments
  • record_publisher - Record publisher for DHT operations
  • gossip - Gossip instance for topic subscription
  • async_bootstrap - If false, awaits until bootstrap completes
Source

pub async fn split(&self) -> Result<(GossipSender, GossipReceiver)>

Split into sender and receiver for message exchange.

Examples found in repository?
examples/simple.rs (line 50)
10async fn main() -> Result<()> {
11    // Generate a new random secret key
12    let secret_key = SecretKey::generate(&mut rand::rng());
13    let signing_key = SigningKey::from_bytes(&secret_key.to_bytes());
14
15    // Set up endpoint with discovery enabled
16    let endpoint = Endpoint::builder()
17        .secret_key(secret_key.clone())
18        .bind()
19        .await?;
20
21    // Initialize gossip with auto-discovery
22    let gossip = Gossip::builder().spawn(endpoint.clone());
23
24    // Set up protocol router
25    let _router = iroh::protocol::Router::builder(endpoint.clone())
26        .accept(iroh_gossip::ALPN, gossip.clone())
27        .spawn();
28
29    let topic_id = TopicId::new("my-iroh-gossip-topic".to_string());
30    let initial_secret = b"my-initial-secret".to_vec();
31
32    // Split into sink (sending) and stream (receiving)
33
34    let record_publisher = RecordPublisher::new(
35        topic_id.clone(),
36        signing_key.verifying_key(),
37        signing_key.clone(),
38        None,
39        initial_secret,
40    );
41
42    let topic = gossip
43        .subscribe_and_join_with_auto_discovery(record_publisher)
44        .await?;
45
46    println!("[joined topic]");
47
48    // Do something with the gossip topic
49    // (bonus: GossipSender and GossipReceiver are safely clonable)
50    let (_gossip_sender, _gossip_receiver) = topic.split().await?;
51
52    Ok(())
53}
More examples
Hide additional examples
examples/e2e_test.rs (line 41)
9async fn main() -> Result<()> {
10    // Generate a new random secret key
11    let secret_key = SecretKey::generate(&mut rand::rng());
12    let signing_key = mainline::SigningKey::from_bytes(&secret_key.to_bytes());
13
14    // Set up endpoint with discovery enabled
15    let endpoint = Endpoint::builder()
16        .secret_key(secret_key.clone())
17        .bind()
18        .await?;
19
20    // Initialize gossip with auto-discovery
21    let gossip = Gossip::builder().spawn(endpoint.clone());
22
23    // Set up protocol router
24    let _router = iroh::protocol::Router::builder(endpoint.clone())
25        .accept(iroh_gossip::ALPN, gossip.clone())
26        .spawn();
27
28    let topic_id = TopicId::new("my-iroh-gossip-topic".to_string());
29    let initial_secret = b"my-initial-secret".to_vec();
30
31    let record_publisher = RecordPublisher::new(
32        topic_id.clone(),
33        signing_key.verifying_key(),
34        signing_key.clone(),
35        None,
36        initial_secret,
37    );
38    let (gossip_sender, gossip_receiver) = gossip
39        .subscribe_and_join_with_auto_discovery(record_publisher)
40        .await?
41        .split()
42        .await?;
43
44    tokio::spawn(async move {
45        while let Some(Ok(event)) = gossip_receiver.next().await {
46            println!("event: {event:?}");
47        }
48    });
49
50    tokio::time::sleep(std::time::Duration::from_secs(3)).await;
51    gossip_sender
52        .broadcast(format!("hi from {}", endpoint.id()).into())
53        .await?;
54
55    println!("[joined topic]");
56
57    tokio::time::sleep(std::time::Duration::from_secs(10)).await;
58
59    println!("[finished]");
60
61    // successfully joined
62    // exit with code 0
63    Ok(())
64}
examples/chat_no_wait.rs (line 42)
10async fn main() -> Result<()> {
11    // Generate a new random secret key
12    let secret_key = SecretKey::generate(&mut rand::rng());
13    let signing_key = SigningKey::from_bytes(&secret_key.to_bytes());
14
15    // Set up endpoint with discovery enabled
16    let endpoint = Endpoint::builder()
17        .secret_key(secret_key.clone())
18        .bind()
19        .await?;
20
21    // Initialize gossip with auto-discovery
22    let gossip = Gossip::builder().spawn(endpoint.clone());
23
24    // Set up protocol router
25    let _router = iroh::protocol::Router::builder(endpoint.clone())
26        .accept(iroh_gossip::ALPN, gossip.clone())
27        .spawn();
28
29    let topic_id = TopicId::new("my-iroh-gossip-topic".to_string());
30    let initial_secret = b"my-initial-secret".to_vec();
31
32    let record_publisher = RecordPublisher::new(
33        topic_id.clone(),
34        signing_key.verifying_key(),
35        signing_key.clone(),
36        None,
37        initial_secret,
38    );
39    let (gossip_sender, gossip_receiver) = gossip
40        .subscribe_and_join_with_auto_discovery_no_wait(record_publisher)
41        .await?
42        .split()
43        .await?;
44
45    println!("Joined topic");
46
47    // Spawn listener for incoming messages
48    tokio::spawn(async move {
49        while let Some(Ok(event)) = gossip_receiver.next().await {
50            if let Event::Received(msg) = event {
51                println!(
52                    "\nMessage from {}: {}",
53                    &msg.delivered_from.to_string()[0..8],
54                    String::from_utf8(msg.content.to_vec()).unwrap()
55                );
56            } else if let Event::NeighborUp(peer) = event {
57                println!("\nJoined by {}", &peer.to_string()[0..8]);
58            }
59        }
60    });
61
62    // Main input loop for sending messages
63    let mut buffer = String::new();
64    let stdin = std::io::stdin();
65    loop {
66        print!("\n> ");
67        stdin.read_line(&mut buffer).unwrap();
68        gossip_sender
69            .broadcast(buffer.clone().replace("\n", "").into())
70            .await
71            .unwrap();
72        println!(" - (sent)");
73        buffer.clear();
74    }
75}
examples/secret_rotation.rs (line 64)
30async fn main() -> Result<()> {
31    // Generate a new random secret key
32    let secret_key = SecretKey::generate(&mut rand::rng());
33    let signing_key = SigningKey::from_bytes(&secret_key.to_bytes());
34
35    // Set up endpoint with discovery enabled
36    let endpoint = Endpoint::builder()
37        .secret_key(secret_key.clone())
38        .bind()
39        .await?;
40
41    // Initialize gossip with auto-discovery
42    let gossip = Gossip::builder().spawn(endpoint.clone());
43
44    // Set up protocol router
45    let _router = iroh::protocol::Router::builder(endpoint.clone())
46        .accept(iroh_gossip::ALPN, gossip.clone())
47        .spawn();
48
49    let topic_id = TopicId::new("my-iroh-gossip-topic".to_string());
50    let initial_secret = b"my-initial-secret".to_vec();
51
52    // Split into sink (sending) and stream (receiving)
53
54    let record_publisher = RecordPublisher::new(
55        topic_id.clone(),
56        signing_key.verifying_key(),
57        signing_key.clone(),
58        Some(RotationHandle::new(MySecretRotation)),
59        initial_secret,
60    );
61    let (gossip_sender, gossip_receiver) = gossip
62        .subscribe_and_join_with_auto_discovery(record_publisher)
63        .await?
64        .split()
65        .await?;
66
67    println!("Joined topic");
68
69    // Spawn listener for incoming messages
70    tokio::spawn(async move {
71        while let Some(Ok(event)) = gossip_receiver.next().await {
72            if let Event::Received(msg) = event {
73                println!(
74                    "\nMessage from {}: {}",
75                    &msg.delivered_from.to_string()[0..8],
76                    String::from_utf8(msg.content.to_vec()).unwrap()
77                );
78            } else if let Event::NeighborUp(peer) = event {
79                println!("\nJoined by {}", &peer.to_string()[0..8]);
80            }
81        }
82    });
83
84    // Main input loop for sending messages
85    let mut buffer = String::new();
86    let stdin = std::io::stdin();
87    loop {
88        print!("\n> ");
89        stdin.read_line(&mut buffer).unwrap();
90        gossip_sender
91            .broadcast(buffer.clone().replace("\n", "").into())
92            .await
93            .unwrap();
94        println!(" - (sent)");
95        buffer.clear();
96    }
97}
examples/chat.rs (line 57)
11async fn main() -> Result<()> {
12    // tracing init - only show distributed_topic_tracker logs
13    use tracing_subscriber::filter::EnvFilter;
14
15    tracing_subscriber::fmt()
16        .with_thread_ids(true)
17        .with_ansi(true)
18        .with_env_filter(
19            EnvFilter::try_from_default_env()
20                .unwrap_or_else(|_| EnvFilter::new("distributed_topic_tracker=debug")),
21        )
22        .init();
23
24    // Generate a new random secret key
25    let secret_key = SecretKey::generate(&mut rand::rng());
26    let signing_key = SigningKey::from_bytes(&secret_key.to_bytes());
27
28    // Set up endpoint with discovery enabled
29    let endpoint = Endpoint::builder()
30        .secret_key(secret_key.clone())
31        .bind()
32        .await?;
33
34    // Initialize gossip with auto-discovery
35    let gossip = Gossip::builder().spawn(endpoint.clone());
36
37    // Set up protocol router
38    let _router = iroh::protocol::Router::builder(endpoint.clone())
39        .accept(iroh_gossip::ALPN, gossip.clone())
40        .spawn();
41
42    let topic_id = TopicId::new("my-iroh-gossip-topic".to_string());
43    let initial_secret = b"my-initial-secret".to_vec();
44
45    let record_publisher = RecordPublisher::new(
46        topic_id.clone(),
47        signing_key.verifying_key(),
48        signing_key.clone(),
49        None,
50        initial_secret,
51    );
52
53    // Split into sink (sending) and stream (receiving)
54    let (gossip_sender, gossip_receiver) = gossip
55        .subscribe_and_join_with_auto_discovery(record_publisher)
56        .await?
57        .split()
58        .await?;
59
60    println!("Joined topic");
61
62    // Spawn listener for incoming messages
63    tokio::spawn(async move {
64        while let Some(Ok(event)) = gossip_receiver.next().await {
65            if let Event::Received(msg) = event {
66                println!(
67                    "\nMessage from {}: {}",
68                    &msg.delivered_from.to_string()[0..8],
69                    String::from_utf8(msg.content.to_vec()).unwrap()
70                );
71            } else if let Event::NeighborUp(peer) = event {
72                println!("\nJoined by {}", &peer.to_string()[0..8]);
73            }
74        }
75    });
76
77    // Main input loop for sending messages
78    let mut buffer = String::new();
79    let stdin = std::io::stdin();
80    loop {
81        print!("\n> ");
82        stdin.read_line(&mut buffer).unwrap();
83        gossip_sender
84            .broadcast(buffer.clone().replace("\n", "").into())
85            .await
86            .unwrap();
87        println!(" - (sent)");
88        buffer.clear();
89    }
90}
Source

pub async fn gossip_sender(&self) -> Result<GossipSender>

Get the gossip sender for this topic.

Source

pub async fn gossip_receiver(&self) -> Result<GossipReceiver>

Get the gossip receiver for this topic.

Source

pub async fn record_creator(&self) -> Result<RecordPublisher>

Get the record publisher for this topic.

Trait Implementations§

Source§

impl Clone for Topic

Source§

fn clone(&self) -> Topic

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Topic

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Topic

§

impl RefUnwindSafe for Topic

§

impl Send for Topic

§

impl Sync for Topic

§

impl Unpin for Topic

§

impl UnwindSafe for Topic

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> CompatExt for T

Source§

fn compat(self) -> Compat<T>

Applies the Compat adapter by value. Read more
Source§

fn compat_ref(&self) -> Compat<&T>

Applies the Compat adapter by shared reference. Read more
Source§

fn compat_mut(&mut self) -> Compat<&mut T>

Applies the Compat adapter by mutable reference. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,