Package com.sun.messaging.jmq.util.timer

Examples of com.sun.messaging.jmq.util.timer.WakeupableTimer


        if (reapTimer == null) {
            try {
            String startString = "Transaction reaper thread has started for TM "+_txlog.getTMName();
            String exitString = "Transaction reaper thread for TM "+_txlog.getTMName()+" is exiting";

            reapTimer = new WakeupableTimer("JMSBridgeTMTransactionReaper-"+_txlog.getTMName(),
                                            this,
                                            _reapInterval, _reapInterval,
                                            startString, exitString, this);
            } catch (Throwable ex) {
            _logger.log(Level.WARNING,
View Full Code Here


                                 TransactionList.TXN_REAPLIMIT,
                                 TransactionList.TXN_REAPINTERVAL/1000);
            String exitString = Globals.getBrokerResources().getKString(
                                BrokerResources.I_COMMITTED_TRAN_REAPER_THREAD_EXIT);

            reapTimer = new WakeupableTimer("TransactionReaper",
                                      this,
                                      TransactionList.TXN_REAPINTERVAL,
                                      TransactionList.TXN_REAPINTERVAL,
                                      startString, exitString, this);
            } catch (Throwable ex) {
View Full Code Here

TOP

Related Classes of com.sun.messaging.jmq.util.timer.WakeupableTimer

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.