https://github.com/threefoldtech/tokio-worker-pool
simple configurable worker pool
https://github.com/threefoldtech/tokio-worker-pool
Last synced: about 2 months ago
JSON representation
simple configurable worker pool
- Host: GitHub
- URL: https://github.com/threefoldtech/tokio-worker-pool
- Owner: threefoldtech
- License: apache-2.0
- Created: 2022-06-13T07:08:12.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-12T03:14:13.000Z (over 1 year ago)
- Last Synced: 2023-10-12T20:38:44.237Z (over 1 year ago)
- Language: Rust
- Size: 20.5 KB
- Stars: 0
- Watchers: 15
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Introduction
A simple worker pool for tokio. The main use is to maintain a fixed number of workers
to run jobs. A job can be fire and forget, or fire and get results.# Example usage
```rust```