mirror of https://github.com/apache/activemq.git
tidied up code a little
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@366153 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
205ac1188a
commit
f73e2097dd
|
@ -177,6 +177,11 @@ public class ActiveMQManagedConnectionFactory implements ManagedConnectionFactor
|
|||
info.setUseInboundSession(useInboundSession);
|
||||
}
|
||||
|
||||
public boolean isUseInboundSessionEnabled() {
|
||||
return info.isUseInboundSessionEnabled();
|
||||
}
|
||||
|
||||
// Redelivery policy configuration
|
||||
public Long getInitialRedeliveryDelay() {
|
||||
return info.getInitialRedeliveryDelay();
|
||||
}
|
||||
|
@ -193,10 +198,6 @@ public class ActiveMQManagedConnectionFactory implements ManagedConnectionFactor
|
|||
return info.getRedeliveryUseExponentialBackOff();
|
||||
}
|
||||
|
||||
public boolean isUseInboundSessionEnabled() {
|
||||
return info.isUseInboundSessionEnabled();
|
||||
}
|
||||
|
||||
public void setInitialRedeliveryDelay(Long value) {
|
||||
info.setInitialRedeliveryDelay(value);
|
||||
}
|
||||
|
@ -209,6 +210,12 @@ public class ActiveMQManagedConnectionFactory implements ManagedConnectionFactor
|
|||
info.setRedeliveryBackOffMultiplier(value);
|
||||
}
|
||||
|
||||
public void setRedeliveryUseExponentialBackOff(Boolean value) {
|
||||
info.setRedeliveryUseExponentialBackOff(value);
|
||||
}
|
||||
|
||||
|
||||
// Prefetch policy configuration
|
||||
public Integer getDurableTopicPrefetch() {
|
||||
return info.getDurableTopicPrefetch();
|
||||
}
|
||||
|
@ -249,10 +256,6 @@ public class ActiveMQManagedConnectionFactory implements ManagedConnectionFactor
|
|||
info.setQueuePrefetch(queuePrefetch);
|
||||
}
|
||||
|
||||
public void setRedeliveryUseExponentialBackOff(Boolean value) {
|
||||
info.setRedeliveryUseExponentialBackOff(value);
|
||||
}
|
||||
|
||||
public void setTopicPrefetch(Integer topicPrefetch) {
|
||||
info.setTopicPrefetch(topicPrefetch);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue