basvandijk / concurrent-extra

Extra concurrency primitives
Other
17 stars 5 forks source link

Add Support for Cyclic Barrier #19

Open crockeea opened 5 years ago

crockeea commented 5 years ago

This Java concurrency primitive is useful, and not easily replicated using the existing primitives in this package. The API could be similar to RLock, except there is no concept of ownership (in particular, any thread can call release).

I'm happy to submit a PR if you're interested in adding this.