Skip to content

An implementation of thread pools which can be used with Rust futures

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

carllerche/futures-threadpool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

An implementation of thread pools which can be used with Rust futures

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages