futures-threadpool

Crates.iofutures-threadpool
lib.rsfutures-threadpool
version0.1.0
sourcesrc
created_at2016-12-28 02:10:14.966641
updated_at2016-12-29 04:38:39.960167
descriptionAn implementation of thread pools using futures
homepagehttps://github.com/carllerche/futures-threadpool
repositoryhttps://github.com/carllerche/futures-threadpool
max_upload_size
id7805
size24,033
Team algorithmia (github:algorithmiaio:team-algorithmia)

documentation

https://docs.rs/futures-threadpool

README

futures-threadpool

A library for creating futures representing work happening concurrently on a dedicated thread pool.

Usage

First, add this to your Cargo.toml:

[dependencies]
futures = "0.1"
futures-threadpool = "0.1"

Next, add this to your crate:

extern crate futures;
extern crate futures_threadpool;

use futures_threadpool::ThreadPool;

License

futures-threadpool is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0), with portions covered by various BSD-like licenses.

See LICENSE-APACHE, and LICENSE-MIT for details.

Commit count: 1

cargo fmt