Class TemporaryQueueExecutor
java.lang.Object
org.apache.jmeter.protocol.jms.sampler.TemporaryQueueExecutor
- All Implemented Interfaces:
QueueExecutor
Request/reply executor with a temporary reply queue.
Used by JMS Sampler (Point to Point)
Used by JMS Sampler (Point to Point)
-
Constructor Summary
ConstructorsConstructorDescriptionTemporaryQueueExecutor
(QueueSession session, Queue destination) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionMessage
sendAndReceive
(Message request, int deliveryMode, int priority, long expiration) Sends and receives a message.
-
Constructor Details
-
TemporaryQueueExecutor
public TemporaryQueueExecutor(QueueSession session, Queue destination) throws JMSException Constructor.- Parameters:
session
- the session to use to send the messagedestination
- the queue to send the message on- Throws:
JMSException
- when internally usedQueueRequestor
can not be constructed withsession
anddestination
-
-
Method Details
-
sendAndReceive
public Message sendAndReceive(Message request, int deliveryMode, int priority, long expiration) throws JMSException Sends and receives a message.- Specified by:
sendAndReceive
in interfaceQueueExecutor
- Parameters:
request
- the message to senddeliveryMode
- the delivery mode to usepriority
- the priority for this messageexpiration
- messages lifetime in ms- Returns:
- the received message or
null
- Throws:
JMSException
-