Module CCPool

module CCPool: sig .. end

Thread Pool, and Futures

Renamed and heavily updated from CCFuture
Since 0.16


type 'a state = 
| Done of 'a
| Waiting
| Failed of exn
module type PARAM = sig .. end
exception Stopped
module Make (P : PARAM) : sig .. end
Create a new Pool