You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 25, 2024. It is now read-only.
I quickly build a BlockingQueue<byte[]> (gist here) based on the QueueFile for a project where I intend to use tape as an offline buffer/resend queue in case the uplink goes down. I could have just build the minimal wrapper I needed, but I though "why not just implement BlockingQueue and see if someone else thinks it's useful?"
This made me wonder why none of Java's standard queuing interfaces have implementations here. Is there a specific reason for that?
If this is need interesting I can submit a PR for the BlockingQueue and implementations of Queue as well.