#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

#222 in Asynchronous

Download history 203/week @ 2023-12-12 249/week @ 2023-12-19 139/week @ 2023-12-26 257/week @ 2024-01-02 388/week @ 2024-01-09 410/week @ 2024-01-16 246/week @ 2024-01-23 314/week @ 2024-01-30 346/week @ 2024-02-06 375/week @ 2024-02-13 347/week @ 2024-02-20 359/week @ 2024-02-27 140/week @ 2024-03-05 180/week @ 2024-03-12 126/week @ 2024-03-19 190/week @ 2024-03-26

739 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.3–9MB
~69K SLoC