Module Fut.Queue
Future queues.
Queues
val concurrent : queue
concurrent
is a special future queue. Applications added to it are all executed concurrently, the FIFO order is not guaranteed.
val create : ?label:string -> unit -> queue
queue ~label ()
is a new queue with the givenlabel
, if unspecified a label is automatically generated.
val label : queue -> string
queue_label q
isq
's label.