What is the best resizable circular byte buffer available in Java?

后端 未结 5 2017
一向
一向 2021-02-01 19:42

I need a byte buffer class in Java for single-threaded use. I should be able to insert data at the back of the buffer and read data at the front, with an amortized cost of O(1).

5条回答
  •  花落未央
    2021-02-01 20:10

    Another solution is to use GrowablePipedOutputStream and GrowablePipedInputStream by JBoss.

提交回复
热议问题