Package org.exolab.jms.common.threads

Examples of org.exolab.jms.common.threads.ThreadListener


     * Arrange for the given command to be executed by a thread in this pool.
     * The method normally returns when the command has been handed off for
     * (possibly later) execution.
     */
    public void execute(Runnable command) throws InterruptedException {
        ThreadListener listener = _listener;
        if (listener != null) {
            super.execute(new NotifyingRunnable(command, listener));
        } else {
            super.execute(command);
        }
View Full Code Here

TOP

Related Classes of org.exolab.jms.common.threads.ThreadListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.