Uses of Interface
jakarta.jms.JMSConsumer
Packages that use JMSConsumer
-
Uses of JMSConsumer in jakarta.jms
Methods in jakarta.jms that return JMSConsumerModifier and TypeMethodDescriptionJMSContext.createConsumer(Destination destination) Creates aJMSConsumerfor the specified destination.JMSContext.createConsumer(Destination destination, String messageSelector) Creates aJMSConsumerfor the specified destination, using a message selector.JMSContext.createConsumer(Destination destination, String messageSelector, boolean noLocal) Creates aJMSConsumerfor the specified destination, specifying a message selector and thenoLocalparameter.JMSContext.createDurableConsumer(Topic topic, String name) Creates an unshared durable subscription on the specified topic (if one does not already exist) and creates a consumer on that durable subscription.JMSContext.createDurableConsumer(Topic topic, String name, String messageSelector, boolean noLocal) Creates an unshared durable subscription on the specified topic (if one does not already exist), specifying a message selector and thenoLocalparameter, and creates a consumer on that durable subscription.JMSContext.createSharedConsumer(Topic topic, String sharedSubscriptionName) Creates a shared non-durable subscription with the specified name on the specified topic (if one does not already exist) and creates a consumer on that subscription.JMSContext.createSharedConsumer(Topic topic, String sharedSubscriptionName, String messageSelector) Creates a shared non-durable subscription with the specified name on the specified topic (if one does not already exist) specifying a message selector, and creates a consumer on that subscription.JMSContext.createSharedDurableConsumer(Topic topic, String name) Creates a shared durable subscription on the specified topic (if one does not already exist), specifying a message selector, and creates a consumer on that durable subscription.JMSContext.createSharedDurableConsumer(Topic topic, String name, String messageSelector) Creates a shared durable subscription on the specified topic (if one does not already exist), specifying a message selector, and creates a consumer on that durable subscription. -
Uses of JMSConsumer in org.apache.activemq.artemis.jms.client
Classes in org.apache.activemq.artemis.jms.client that implement JMSConsumerMethods in org.apache.activemq.artemis.jms.client that return JMSConsumerModifier and TypeMethodDescriptionActiveMQJMSContext.createConsumer(Destination destination) ActiveMQJMSContext.createConsumer(Destination destination, String messageSelector) ActiveMQJMSContext.createConsumer(Destination destination, String messageSelector, boolean noLocal) ActiveMQJMSContext.createDurableConsumer(Topic topic, String name) ActiveMQJMSContext.createDurableConsumer(Topic topic, String name, String messageSelector, boolean noLocal) ActiveMQJMSContext.createSharedConsumer(Topic topic, String sharedSubscriptionName) ActiveMQJMSContext.createSharedConsumer(Topic topic, String sharedSubscriptionName, String messageSelector) ActiveMQJMSContext.createSharedDurableConsumer(Topic topic, String name) ActiveMQJMSContext.createSharedDurableConsumer(Topic topic, String name, String messageSelector)