recoverable-thread-pool 2.4.22

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.
Documentation
1
2
3
4
5
mod thread_pool;

use recoverable_thread_pool::*;

use std::{thread::sleep, time::Duration};