Examples of XThreadFactory


Examples of com.google.code.or.common.util.XThreadFactory

 
  /**
   *
   */
  public AbstractBinlogParser() {
    this.threadFactory = new XThreadFactory("binlog-parser", false);
    this.parserListeners = new CopyOnWriteArrayList<BinlogParserListener>();
  }
View Full Code Here

Examples of com.google.code.or.common.util.XThreadFactory

  public ActiveBufferedInputStream(InputStream is) {
    this(is, DEFAULT_CAPACITY);
  }
 
  public ActiveBufferedInputStream(InputStream is, int size) {
    this(is, size, new XThreadFactory("active-bis", true));
  }
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.