git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1379433 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bosanac Dejan 2012-08-31 12:53:53 +00:00
parent 1e57750dd6
commit ee2069f85c
2 changed files with 54 additions and 34 deletions

View File

@ -21,6 +21,7 @@ import java.lang.reflect.Method;
import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicBoolean;
import javax.jms.Connection; import javax.jms.Connection;
import javax.jms.ConnectionConsumer; import javax.jms.ConnectionConsumer;
import javax.jms.Destination;
import javax.jms.ExceptionListener; import javax.jms.ExceptionListener;
import javax.jms.JMSException; import javax.jms.JMSException;
import javax.jms.Message; import javax.jms.Message;
@ -125,21 +126,20 @@ public class ActiveMQEndpointWorker {
}); });
connection.start(); connection.start();
int prefetchSize = activationSpec.getMaxMessagesPerSessionsIntValue() * activationSpec.getMaxSessionsIntValue();
if (activationSpec.isDurableSubscription()) { if (activationSpec.isDurableSubscription()) {
consumer = connection.createDurableConnectionConsumer( consumer = connection.createDurableConnectionConsumer(
(Topic) dest, (Topic) dest,
activationSpec.getSubscriptionName(), activationSpec.getSubscriptionName(),
emptyToNull(activationSpec.getMessageSelector()), emptyToNull(activationSpec.getMessageSelector()),
serverSessionPool, serverSessionPool,
prefetchSize, connection.getPrefetchPolicy().getDurableTopicPrefetch(),
activationSpec.getNoLocalBooleanValue()); activationSpec.getNoLocalBooleanValue());
} else { } else {
consumer = connection.createConnectionConsumer( consumer = connection.createConnectionConsumer(
dest, dest,
emptyToNull(activationSpec.getMessageSelector()), emptyToNull(activationSpec.getMessageSelector()),
serverSessionPool, serverSessionPool,
prefetchSize, getPrefetch(activationSpec, connection, dest),
activationSpec.getNoLocalBooleanValue()); activationSpec.getNoLocalBooleanValue());
} }
@ -161,6 +161,16 @@ public class ActiveMQEndpointWorker {
} }
} }
private int getPrefetch(MessageActivationSpec activationSpec, ActiveMQConnection connection, ActiveMQDestination destination) {
if (destination.isTopic()) {
return connection.getPrefetchPolicy().getTopicPrefetch();
} else if (destination.isQueue()) {
return connection.getPrefetchPolicy().getQueuePrefetch();
} else {
return activationSpec.getMaxMessagesPerSessionsIntValue() * activationSpec.getMaxSessionsIntValue();
}
}
private void pause(JMSException error) { private void pause(JMSException error) {
if (currentReconnectDelay == MAX_RECONNECT_DELAY) { if (currentReconnectDelay == MAX_RECONNECT_DELAY) {
LOG.error("Failed to connect to broker [" + adapter.getInfo().getServerUrl() + "]: " LOG.error("Failed to connect to broker [" + adapter.getInfo().getServerUrl() + "]: "

View File

@ -48,7 +48,12 @@ import javax.transaction.xa.Xid;
import junit.framework.TestCase; import junit.framework.TestCase;
import org.apache.activemq.ActiveMQConnectionFactory; import org.apache.activemq.ActiveMQConnectionFactory;
import org.apache.activemq.advisory.AdvisorySupport;
import org.apache.activemq.broker.BrokerRegistry;
import org.apache.activemq.broker.BrokerService;
import org.apache.activemq.command.ActiveMQMessage;
import org.apache.activemq.command.ActiveMQQueue; import org.apache.activemq.command.ActiveMQQueue;
import org.apache.activemq.command.ConsumerInfo;
public class MDBTest extends TestCase { public class MDBTest extends TestCase {
@ -133,10 +138,14 @@ public class MDBTest extends TestCase {
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("vm://localhost?broker.persistent=false"); ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("vm://localhost?broker.persistent=false");
Connection connection = factory.createConnection(); Connection connection = factory.createConnection();
connection.start();
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
MessageConsumer advisory = session.createConsumer(AdvisorySupport.getConsumerAdvisoryTopic(new ActiveMQQueue("TEST")));
ActiveMQResourceAdapter adapter = new ActiveMQResourceAdapter(); ActiveMQResourceAdapter adapter = new ActiveMQResourceAdapter();
adapter.setServerUrl("vm://localhost?broker.persistent=false"); adapter.setServerUrl("vm://localhost?broker.persistent=false");
adapter.setQueuePrefetch(1);
adapter.start(new StubBootstrapContext()); adapter.start(new StubBootstrapContext());
final CountDownLatch messageDelivered = new CountDownLatch(1); final CountDownLatch messageDelivered = new CountDownLatch(1);
@ -168,16 +177,17 @@ public class MDBTest extends TestCase {
// Activate an Endpoint // Activate an Endpoint
adapter.endpointActivation(messageEndpointFactory, activationSpec); adapter.endpointActivation(messageEndpointFactory, activationSpec);
// Give endpoint a chance to setup and register its listeners ActiveMQMessage msg = (ActiveMQMessage)advisory.receive(1000);
try { if (msg != null) {
Thread.sleep(1000); assertEquals("Prefetch size hasn't been set", 1, ((ConsumerInfo)msg.getDataStructure()).getPrefetchSize());
} catch (Exception e) { } else {
fail("Consumer hasn't been created");
} }
// Send the broker a message to that endpoint // Send the broker a message to that endpoint
MessageProducer producer = session.createProducer(new ActiveMQQueue("TEST")); MessageProducer producer = session.createProducer(new ActiveMQQueue("TEST"));
producer.send(session.createTextMessage("Hello!")); producer.send(session.createTextMessage("Hello!"));
connection.close(); connection.close();
// Wait for the message to be delivered. // Wait for the message to be delivered.