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

#735 in Asynchronous

Download history 156/week @ 2025-02-05 83/week @ 2025-02-12 62/week @ 2025-02-19 92/week @ 2025-02-26 45/week @ 2025-03-05 147/week @ 2025-03-12 53/week @ 2025-03-19 78/week @ 2025-03-26 15/week @ 2025-04-02 37/week @ 2025-04-09 30/week @ 2025-04-16 114/week @ 2025-04-23 79/week @ 2025-04-30 54/week @ 2025-05-07 12/week @ 2025-05-14 32/week @ 2025-05-21

198 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.1–8MB
~65K SLoC