use of com.actiontech.dble.backend.mysql.nio.handler.query.impl.OutputHandler in project dble by actiontech.
the class HandlerBuilder method build.
public void build(boolean hasNext) throws Exception {
final long startTime = System.nanoTime();
DMLResponseHandler endHandler = buildNode(session, node, false);
OutputHandler fh = new OutputHandler(BaseHandlerBuilder.getSequenceId(), session, hasNext);
endHandler.setNextHandler(fh);
HandlerBuilder.startHandler(fh);
long endTime = System.nanoTime();
logger.info("HandlerBuilder.build cost:" + (endTime - startTime));
}
Aggregations