Skip to content

kkaatii/rework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rework

version documentation

Multi-threaded async task processing in the Master-Worker pattern.

A rework system consists of a dispatcher and multiple workers. The dispatcher receives work requests via its Handle and schedules work with the help of a Scheduler. The way workers process incoming requests is defined by a WorkFn which takes a request and asynchronously generates a response.

The dispatcher, as well as every worker, runs on its dedicated thread. Although the concrete Request type must be Send, the response futures do not have to, allowing workers to leverage !Send mechanisms, e.g., thread locals.

Features

  • Multi-threaded workers, each with a single-thread async runtime, that can work on !Send futures.
  • Async as an option--you don't necessarily need an async runtime at all.
  • Load balanced, as long as Workload is properly defined.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages