Crate recoverable_thread_pool

Source
Expand description

recoverable-thread-pool

A thread pool that supports automatic recovery from panics, allowing threads to restart after a panic. Useful for resilient and fault-tolerant concurrency in network and web programming.

Structs§

ThreadPool
A thread pool that can execute tasks concurrently.
Worker
A worker thread in the thread pool.

Type Aliases§

SendErrorBox
Error type for failed job submissions.
SendResult
Result type for job submission operations.
ThreadPoolJob
A job that can be executed by the thread pool.