public long getConsumerFailoverRedeliveryWaitPeriod() {
return consumerFailoverRedeliveryWaitPeriod;
}
protected Scheduler getScheduler() throws JMSException {
Scheduler result = scheduler;
if (result == null) {
synchronized (this) {
result = scheduler;
if (result == null) {
checkClosed();
try {
result = scheduler = new Scheduler("ActiveMQConnection["+info.getConnectionId().getValue()+"] Scheduler");
scheduler.start();
} catch(Exception e) {
throw JMSExceptionSupport.create(e);
}
}