Skip to content

ophers/BlockingQueue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

BlockingQueue

Q: Why yet another .Net 2.0 Blocking Queue implementation?
A: I was looking, back in December 2013, for a Blocking Queue implementation for .Net 2.0 but none that I found were simple or reused existing .Net functionality.

Q: What??
A: I wanted an implementation to (1) encapsulate all the syncronization machinary, (2) extend Queue and (3) reuse Queue.Synchronized.

Q: How is it simple to use?
A: Use it like so:

  using System.Collections;
  using Gh.Os.Concurrent;
  ...
    Queue blockingQueue1 = BlockingQueue.create();
  ...

now use blockingQueue1 with all standard Queue methods and properties.

About

Yet another .Net 2.0 Blocking Queue implementation

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages