public static boolean dropAsyncExecutor(final String name) {
if (Utils.isValidString(name) && getExecutorMap().containsKey(name)) {
final AsyncExecutorImpl asyncExecutor = getExecutorMap().remove(name);
asyncExecutor.shutdown();
return true;
}
return false;
}