Uses of Interface
jakarta.jms.MessageConsumer
Packages that use MessageConsumer
Package
Description
-
Uses of MessageConsumer in jakarta.jms
Subinterfaces of MessageConsumer in jakarta.jmsModifier and TypeInterfaceDescriptioninterfaceA client uses aQueueReceiverobject to receive messages that have been delivered to a queue.interfaceA client uses aTopicSubscriberobject to receive messages that have been published to a topic.Methods in jakarta.jms that return MessageConsumerModifier and TypeMethodDescriptionSession.createConsumer(Destination destination) Creates aMessageConsumerfor the specified destination.Session.createConsumer(Destination destination, String messageSelector) Creates aMessageConsumerfor the specified destination, using a message selector.Session.createConsumer(Destination destination, String messageSelector, boolean noLocal) Creates aMessageConsumerfor the specified destination, specifying a message selector and thenoLocalparameter.Session.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.Session.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.Session.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.Session.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.Session.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 thenoLocalparameter, and creates a consumer on that durable subscription.Session.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 MessageConsumer in org.apache.activemq.artemis.jms.client
Classes in org.apache.activemq.artemis.jms.client that implement MessageConsumerModifier and TypeClassDescriptionfinal classActiveMQ Artemis implementation of a JMS MessageConsumer.Methods in org.apache.activemq.artemis.jms.client that return MessageConsumerModifier and TypeMethodDescriptionActiveMQSession.createConsumer(Destination destination) Creates aMessageConsumerfor the specified destination.ActiveMQSession.createConsumer(Destination destination, String messageSelector) Creates aMessageConsumerfor the specified destination, using a message selector.ActiveMQSession.createConsumer(Destination destination, String messageSelector, boolean noLocal) Creates aMessageConsumerfor the specified destination, specifying a message selector and thenoLocalparameter.ActiveMQSession.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.ActiveMQSession.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.ActiveMQSession.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.ActiveMQSession.createSharedConsumer(Topic topic, String name, 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.ActiveMQSession.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 thenoLocalparameter, and creates a consumer on that durable subscription.ActiveMQSession.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 MessageConsumer in org.apache.activemq.artemis.ra
Classes in org.apache.activemq.artemis.ra that implement MessageConsumerModifier and TypeClassDescriptionclassA wrapper for aMessageConsumer.classA wrapper for aQueueReceiver.classA wrapper for aTopicSubscriber.Fields in org.apache.activemq.artemis.ra declared as MessageConsumerMethods in org.apache.activemq.artemis.ra that return MessageConsumerModifier and TypeMethodDescriptionActiveMQRASession.createConsumer(Destination destination) Creates aMessageConsumerfor the specified destination.ActiveMQRASession.createConsumer(Destination destination, String messageSelector) Creates aMessageConsumerfor the specified destination, using a message selector.ActiveMQRASession.createConsumer(Destination destination, String messageSelector, boolean noLocal) Creates aMessageConsumerfor the specified destination, specifying a message selector and thenoLocalparameter.ActiveMQRASession.createDurableConsumer(Topic topic, String name) ActiveMQRASession.createDurableConsumer(Topic topic, String name, String messageSelector, boolean noLocal) ActiveMQRASession.createSharedConsumer(Topic topic, String sharedSubscriptionName) ActiveMQRASession.createSharedConsumer(Topic topic, String sharedSubscriptionName, String messageSelector) ActiveMQRASession.createSharedDurableConsumer(Topic topic, String name) ActiveMQRASession.createSharedDurableConsumer(Topic topic, String name, String messageSelector) Constructors in org.apache.activemq.artemis.ra with parameters of type MessageConsumerModifierConstructorDescriptionActiveMQRAMessageConsumer(MessageConsumer consumer, ActiveMQRASession session)