Uses of Interface
jakarta.jms.ServerSessionPool
-
Packages that use ServerSessionPool 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. -
-
Uses of ServerSessionPool in jakarta.jms
Methods in jakarta.jms that return ServerSessionPool Modifier and Type Method Description ServerSessionPool
ConnectionConsumer. getServerSessionPool()
Gets the server session pool associated with this connection consumer.Methods in jakarta.jms with parameters of type ServerSessionPool Modifier and Type Method Description ConnectionConsumer
Connection. createConnectionConsumer(Destination destination, String messageSelector, ServerSessionPool sessionPool, int maxMessages)
Creates a connection consumer for this connection (optional operation) on the specific destination.ConnectionConsumer
QueueConnection. createConnectionConsumer(Queue queue, String messageSelector, ServerSessionPool sessionPool, int maxMessages)
Creates a connection consumer for this connection (optional operation).ConnectionConsumer
TopicConnection. createConnectionConsumer(Topic topic, String messageSelector, ServerSessionPool sessionPool, int maxMessages)
Creates a connection consumer for this connection (optional operation).ConnectionConsumer
Connection. 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.ConnectionConsumer
TopicConnection. createDurableConnectionConsumer(Topic topic, String subscriptionName, String messageSelector, ServerSessionPool sessionPool, int maxMessages)
Create a durable connection consumer for this connection (optional operation).ConnectionConsumer
Connection. 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.ConnectionConsumer
Connection. 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.
-