jox icon indicating copy to clipboard operation
jox copied to clipboard

Fast and Scalable Channels in Java

Results 14 jox issues
Sort by recently updated
recently updated
newest added

At least trySend() 🙏 TL;DR Add non-blocking trySend(T) and tryReceive() methods to Channel to enable integration with NIO frameworks (Netty, Vert.x, etc.), where blocking the event loop thread is prohibited....

This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [org.junit.jupiter:junit-jupiter](https://junit.org/) ([source](https://redirect.github.com/junit-team/junit-framework)) | `5.14.1` -> `6.0.1` | [![age](https://developer.mend.io/api/mc/badges/age/maven/org.junit.jupiter:junit-jupiter/6.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.junit.jupiter:junit-jupiter/5.14.1/6.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- >...

dependency

For monitoring, metrics and UnlimitedChannels it would be very useful to have Channel.estimateSize() or Channel.size() 🙏

It'd be nice to be able to receive (or send) multiple values at once from the channel, something like `channel.receive(n)`. For the case when `n` elements are not available, there...