Trace_private_util.B_queueBasic Blocking Queue
val create : unit -> _ tval push : 'a t -> 'a -> unitpush q x pushes x into q, and returns ().
val pop_all : 'a t -> 'a listpop_all bq returns all items presently in bq, in the same order, and clears bq. It blocks if no element is in bq.
val close : _ t -> unitClose the queue, meaning there won't be any more push allowed.