Uses of Interface
jakarta.jms.JMSConsumer

Packages that use JMSConsumer
Package
Description
The Jakarta Messaging API provides a common way for Java programs to create, send, receive and read an enterprise messaging system's messages.
  • Uses of JMSConsumer in jakarta.jms

    Methods in jakarta.jms that return JMSConsumer
    Modifier and Type
    Method
    Description
    JMSContext.createConsumer(Destination destination)
    Creates a JMSConsumer for the specified destination.
    JMSContext.createConsumer(Destination destination, String messageSelector)
    Creates a JMSConsumer for the specified destination, using a message selector.
    JMSContext.createConsumer(Destination destination, String messageSelector, boolean noLocal)
    Creates a JMSConsumer for the specified destination, specifying a message selector and the noLocal parameter.
    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 the noLocal parameter, 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.