A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
package org.apache.axis2.jaxws.utility
A simple Executor implementation that does not create a new thread for processing work, but just borrows the current thread.
View Full Code of org.apache.axis2.jaxws.utility.SingleThreadedExecutor
if (disable != null && disable.booleanValue()) {
if (log.isDebugEnabled()) {
log.debug("Server side thread switch disabled. " +
"Setting Executor to the SingleThreadedExecutor.");
}
executor = new SingleThreadedExecutor();
}
executor.execute(task);
return;
}
if (disable != null && disable.booleanValue()) {
if (log.isDebugEnabled()) {
log.debug("Server side thread switch disabled. " +
"Setting Executor to the SingleThreadedExecutor.");
}
executor = new SingleThreadedExecutor();
}
executor.execute(task);
return;
}
View Full Code of org.apache.axis2.jaxws.utility.SingleThreadedExecutor
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z