Uses of Interface
jakarta.jms.ConnectionConsumer
-
Packages that use ConnectionConsumer Package Description jakarta.jms The Jakarta Messaging API provides a common way for Java programs to create, send, receive and read an enterprise messaging system's messages.org.apache.activemq.artemis.jms.client -
-
Uses of ConnectionConsumer in jakarta.jms
Methods in jakarta.jms that return ConnectionConsumer Modifier and Type Method Description ConnectionConsumerConnection. createConnectionConsumer(Destination destination, String messageSelector, ServerSessionPool sessionPool, int maxMessages)Creates a connection consumer for this connection (optional operation) on the specific destination.ConnectionConsumerQueueConnection. createConnectionConsumer(Queue queue, String messageSelector, ServerSessionPool sessionPool, int maxMessages)Creates a connection consumer for this connection (optional operation).ConnectionConsumerTopicConnection. createConnectionConsumer(Topic topic, String messageSelector, ServerSessionPool sessionPool, int maxMessages)Creates a connection consumer for this connection (optional operation).ConnectionConsumerConnection. createDurableConnectionConsumer(Topic topic, String subscriptionName, String messageSelector, ServerSessionPool sessionPool, int maxMessages)Creates a connection consumer for this connection (optional operation) on the specific topic using an unshared durable subscription with the specified name.ConnectionConsumerTopicConnection. createDurableConnectionConsumer(Topic topic, String subscriptionName, String messageSelector, ServerSessionPool sessionPool, int maxMessages)Create a durable connection consumer for this connection (optional operation).ConnectionConsumerConnection. createSharedConnectionConsumer(Topic topic, String subscriptionName, String messageSelector, ServerSessionPool sessionPool, int maxMessages)Creates a connection consumer for this connection (optional operation) on the specific topic using a shared non-durable subscription with the specified name.ConnectionConsumerConnection. createSharedDurableConnectionConsumer(Topic topic, String subscriptionName, String messageSelector, ServerSessionPool sessionPool, int maxMessages)Creates a connection consumer for this connection (optional operation) on the specific topic using a shared durable subscription with the specified name. -
Uses of ConnectionConsumer in org.apache.activemq.artemis.jms.client
Methods in org.apache.activemq.artemis.jms.client that return ConnectionConsumer Modifier and Type Method Description ConnectionConsumerActiveMQConnection. createConnectionConsumer(Destination destination, String messageSelector, ServerSessionPool sessionPool, int maxMessages)ConnectionConsumerActiveMQConnection. createConnectionConsumer(Queue queue, String messageSelector, ServerSessionPool sessionPool, int maxMessages)ConnectionConsumerActiveMQConnection. createConnectionConsumer(Topic topic, String messageSelector, ServerSessionPool sessionPool, int maxMessages)ConnectionConsumerActiveMQConnection. createDurableConnectionConsumer(Topic topic, String subscriptionName, String messageSelector, ServerSessionPool sessionPool, int maxMessages)ConnectionConsumerActiveMQConnection. createSharedConnectionConsumer(Topic topic, String subscriptionName, String messageSelector, ServerSessionPool sessionPool, int maxMessages)ConnectionConsumerActiveMQConnection. createSharedDurableConnectionConsumer(Topic topic, String subscriptionName, String messageSelector, ServerSessionPool sessionPool, int maxMessages)
-