Function palombe::receive[][src]

pub fn receive(name: &str) -> String
Expand description

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

Example

extern create palombe;
 
fn main() {
    println!("{}", palombe.receive("foo"));
}