protected ExecutionResults execute(final HConnectionImpl conn) throws HBqlException {
final ExecutionResults retval = new ExecutionResults();
retval.out.println("Async Executors: ");
for (final String name : AsyncExecutorManager.getAsyncExecutorNames()) {
final AsyncExecutor asyncExecutor = AsyncExecutorManager.getAsyncExecutor(name);
retval.out.println("\t" + asyncExecutor.getName() + "("
+ "MIN_THREAD_COUNT: " + asyncExecutor.getMinThreadCount()
+ ", MAX_THREAD_COUNT: " + asyncExecutor.getMaxThreadCount()
+ ", KEEP_ALIVE_SECS: " + asyncExecutor.getKeepAliveSecs()
+ ")");
}
retval.out.flush();
return retval;
}