Function palombe::send[][src]

pub fn send(name: &str, value: &str)
Expand description

Send a value associated with a key to another thread/program launched by the same user

Example

extern create palombe;
 
fn main() {
    palombe.send("foo", "bar");
}