This buffer gives read access to any element in the buffer not just the first or last element. @author Ceki Gülcü @since 0.9.0
165166167168169170171
class AppenderTableModel extends AbstractTableModel { CyclicBuffer cb; AppenderTableModel(int size) { cb = new CyclicBuffer(size); }
174175176177178179180
308309310311312313314
* The <b>BufferSize</b> option takes a positive integer representing the number of events this appender will buffer and send to newly connected * clients. */ public void setBufferSize(int _bufferSize) { buffer = new CyclicBuffer(_bufferSize); }
151152153154155156157