6768697071727374
/** * */ public AbstractBinlogParser() { this.threadFactory = new XThreadFactory("binlog-parser", false); this.parserListeners = new CopyOnWriteArrayList<BinlogParserListener>(); }
58596061626364
public ActiveBufferedInputStream(InputStream is) { this(is, DEFAULT_CAPACITY); } public ActiveBufferedInputStream(InputStream is, int size) { this(is, size, new XThreadFactory("active-bis", true)); }