use of com.actiontech.dble.backend.mysql.nio.handler.util.HeapItem in project dble by actiontech.
the class MultiNodeMergeHandler method execute.
public void execute() throws Exception {
synchronized (exeHandlers) {
if (terminate.get())
return;
for (BaseSelectHandler exeHandler : exeHandlers) {
MySQLConnection exeConn = exeHandler.initConnection();
if (exeConn != null) {
exeConn.setComplexQuery(true);
queues.put(exeConn, new LinkedBlockingQueue<HeapItem>(queueSize));
exeHandler.execute(exeConn);
}
}
}
}
Aggregations