tx5-online 0.8.1

Holochain WebRTC P2P Communication Ecosystem Online Connectivity Events
Documentation
1
2
3
4
5
6
7
8
#[tokio::main(flavor = "multi_thread")]
async fn main() {
    let mut r = tx5_online::OnlineReceiver::new();
    println!("{}", r.status());
    loop {
        println!("{}", r.recv().await);
    }
}