Java源码示例:org.apache.qpid.proton.engine.impl.CollectorImpl

示例1
protected ReactorImpl(IO io, ReactorOptions options) throws IOException {
    collector = (CollectorImpl)Proton.collector();
    global = new IOHandler();
    handler = new BaseHandler();
    children = new HashSet<ReactorChild>();
    selectables = 0;
    timer = new Timer(collector);
    this.io = io;
    wakeup = this.io.pipe();
    mark();
    attachments = new RecordImpl();
    this.options = options;
}
 
示例2
public static Collector create() {
    return new CollectorImpl();
}
 
示例3
public Timer(Collector collector) {
    this.collector = (CollectorImpl)collector;
}