#pub-sub #pubsub #framework #async #run-time #topic #sync

circulate

Lightweight PubSub framework that supports both sync and async

7 releases (4 breaking)

0.5.0 Aug 24, 2023
0.4.0 Feb 28, 2023
0.3.0 Mar 23, 2022
0.2.1 Dec 24, 2021
0.1.0-dev.1 Apr 27, 2021

#535 in Asynchronous

Download history 178/week @ 2024-03-11 122/week @ 2024-03-18 157/week @ 2024-03-25 234/week @ 2024-04-01 130/week @ 2024-04-08 116/week @ 2024-04-15 169/week @ 2024-04-22 100/week @ 2024-04-29 70/week @ 2024-05-06 87/week @ 2024-05-13 98/week @ 2024-05-20 111/week @ 2024-05-27 89/week @ 2024-06-03 106/week @ 2024-06-10 92/week @ 2024-06-17 86/week @ 2024-06-24

386 downloads per month
Used in 10 crates (via bonsaidb-core)

MIT/Apache

21KB
411 lines

Circulate

crate version Live Build Status Documentation for main branch

Circulate is a lightweight PubSub framework that supports both async and non-async code. This project is written for BonsaiDb. While BonsaiDb's async relies upon tokio, this crate is runtime agnostic thanks to the excellent crate flume.

Async Example

let relay = Relay::default();
let subscriber = relay.create_subscriber();

subscriber.subscribe_to(&"some topic")?;

relay.publish(&"some topic", &AnySerializableType)?;

let message = subscriber.receiver().recv_async().await?;
println!(
    "Received message on topic {}: {:?}",
    message.topic::<String>()?,
    message.payload::<AnySerializableType>()?
);

Sync Example

let relay = Relay::default();
let subscriber = relay.create_subscriber();

subscriber.subscribe_to(&"some topic")?;

relay.publish(&"some topic", &AnySerializableType)?;

let message = subscriber.receiver().recv()?;
println!(
    "Received message on topic {}: {:?}",
    message.topic::<String>()?,
    message.payload::<AnySerializableType>()?
);

Open-source Licenses

This project, like all projects from Khonsu Labs, are open-source. This repository is available under the MIT License or the Apache License 2.0.

To learn more about contributing, please see CONTRIBUTING.md.

Dependencies

~2.2–8MB
~68K SLoC