Crates.io | pubsub |
lib.rs | pubsub |
version | 0.2.3 |
source | src |
created_at | 2015-12-13 14:39:35.767319 |
updated_at | 2015-12-15 00:03:39.936387 |
description | Local publish / subscribe |
homepage | |
repository | https://github.com/fuchsnj/rust_pubsub |
max_upload_size | |
id | 3622 |
size | 13,059 |
http://fuchsnj.github.io/rust_pubsub
Add the following to your Cargo.toml
[dependencies]
pubsub = "*"
and this to your crate root:
extern crate pubsub;
##Quick Start
extern crate pubsub;
use pubsub::PubSub;
//create pubsub with 5 threads. These threads run notification functions.
//messages are queued indefinitely until they can be run
let pubsub = PubSub::new(5);
//subscribe to a channel. The subscription will stay active as long
//as sub1 stays in scope
let sub1 = pubsub.subscribe("channel1", move |msg|{
println!("channel 1 was notified with msg: {}", msg);
});
//notify all subscribers of "channel1" with message "data1"
//This will always return immediately since messages are queued
pubsub.notify("channel1", "data1");
//notify all subscribers of "channel1" except sub1
sub1.notify_others("data3");
//If you want to start queueing messsages for a subscription, but
//don't want to process them until after some initialization
let sub2_activator = pubsub.lazy_subscribe("channel2");
//do some initialization here...
//notifications received here are queued
pubsub.notify("channel2", "data4");
//this creates a subscription and processes any messages in the backlog
let sub2 = sub2_activator.activate(move |msg|{
println!("channel 2 was notified with msg: {}", msg);
});
//subscriptions can be cancelled by dropping or cancelling
drop(sub1);
sub2.cancel();