queuingtask 0.1.0

queueingtask is a library for running different threads in order in Rust
Documentation
  • Coverage
  • 0%
    0 out of 8 items documented0 out of 5 items with examples
  • Size
  • Source code size: 7.68 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 481.91 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • j6k1/queuingtask
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • j6k1

queuingtask

Rustで順番に異なるスレッドを実行するためのライブラリ

使い方

extern crate queuingtask;
 
let mut thread_queue = ThreadQueue::new();
thread_queue.submit(move || {
  print!("aaaaaa");
  1
});

※スレッドはsubmitに渡した順番で順次実行されます。 前のスレッドの実行が終了するまで次のスレッドはブロックされます。

Cargo.toml

[package]
name = "hoge"
version = "0.1.0"
authors = ["yourname"]

[dependencies.queuingtask]
git = "https://github.com/j6k1/queuingtask.git"

戻り値を受け取る

let h = thread_queue.submit(move || {
  print!("aaaaaa");
  1
});
/// スレッドの終了を待機
let r = h.join().unwrap();