DROP ASYNC EXECUTOR

Syntax

DROP ASYNC EXECUTOR name [IF bool_expr]

Description

Drops named AsyncExecutor.

Example

        HConnection conn = HConnectionManager.newConnection();

        conn.execute("DROP ASYNC EXECUTOR asyncExec IF asyncExecutorExists('asyncExec')");

        // Or, using the API
        if (AsyncExecutorManager.asyncExecutorExists("asyncExec"))
            AsyncExecutorManager.dropAsyncExecutor("asyncExec");