DROP ASYNC EXECUTOR name [IF bool_expr]
Drops named AsyncExecutor.
HConnection conn = HConnectionManager.newConnection();
conn.execute("DROP ASYNC EXECUTOR asyncExec IF asyncExecutorExists('asyncExec')");
// Or, using the API
if (AsyncExecutorManager.asyncExecutorExists("asyncExec"))
AsyncExecutorManager.dropAsyncExecutor("asyncExec");