Examples of CyclicBuffer


Examples of org.apache.log4j.helpers.CyclicBuffer

class AppenderTableModel extends AbstractTableModel {

  CyclicBuffer cb;
 
  AppenderTableModel(int size) {
    cb = new CyclicBuffer(size);
  }
View Full Code Here

Examples of org.apache.log4j.helpers.CyclicBuffer

   * 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);
  }
View Full Code Here

Examples of org.apache.log4j.helpers.CyclicBuffer

class AppenderTableModel extends AbstractTableModel {

  CyclicBuffer cb;
 
  AppenderTableModel(int size) {
    cb = new CyclicBuffer(size);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.