Uses of Interface
javax.jms.MessageConsumer
-
-
Uses of MessageConsumer in javax.jms
Subinterfaces of MessageConsumer in javax.jms Modifier and Type Interface Description interface
QueueReceiver
A client uses aQueueReceiver
object to receive messages that have been delivered to a queue.interface
TopicSubscriber
A client uses aTopicSubscriber
object to receive messages that have been published to a topic.Methods in javax.jms that return MessageConsumer Modifier and Type Method Description MessageConsumer
Session. createConsumer(Destination destination)
Creates aMessageConsumer
for the specified destination.MessageConsumer
Session. createConsumer(Destination destination, java.lang.String messageSelector)
Creates aMessageConsumer
for the specified destination, using a message selector.MessageConsumer
Session. createConsumer(Destination destination, java.lang.String messageSelector, boolean NoLocal)
CreatesMessageConsumer
for the specified destination, using a message selector.
-