Skip to content

Releases: joncrlsn/dque

Added blocking dequeue and peek methods

01 Mar 23:29
74fd78b
Compare
Choose a tag to compare

Added Dque.DequeueBlock() method that, when the queue is empty, blocks (doesn't return) until something is added to the queue. There is also a corresponding Dque.PeekBlock() method. Thank you, Thomas Kriechbaumer.

protect the queue directory by a lockfile

29 Feb 22:53
e30a4da
Compare
Choose a tag to compare

Thomas Kriechbaumer added a lock file to prohibit opening of the queue by different processes (or even just different threads) at the same time.