funky

Crates.iofunky
lib.rsfunky
version0.0.1
sourcesrc
created_at2015-06-17 14:59:22.269839
updated_at2015-12-11 23:58:51.47213
descriptionEasily dispatch functions to a thread
homepagehttp://www.github.com/timonv/rust-funky
repositoryhttp://www.github.com/timonv/rust-funky
max_upload_size
id2407
size2,412
Timon Vonk (timonv)

documentation

README

Funky!

Funky allows you to fire any function that implements Sync + Send quickly into a thread. The thread takes ownership of any arguments passed into the macro.

The macro returns a mpsc::Receiver on which you can block until you have the result.

Installation

Add to your Cargo.toml

funky = *

And run cargo install

Usage

Add to your main or lib file:

#[macro_use]
extern crate funky;

An example with no arguments:

let func = || -> String {
  "abc".to_string()
};

let rx = funky!(func);
assert_eq!(rx.recv().unwrap(), "abc".to_string())

And with many arguments:

let func = |string: String| -> String {
  string
};

let rx = funky!(func, "abc".to_string());
assert_eq!(rx.recv().unwrap(), "abc".to_string())
Commit count: 0

cargo fmt