Class SubscriberSampler
- All Implemented Interfaces:
Serializable
,Cloneable
,ConfigMergabilityIndicator
,Searchable
,Interruptible
,Sampler
,org.apache.jmeter.testelement.TestElement
,TestStateListener
,ThreadListener
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.jmeter.testelement.TestElement
org.apache.jmeter.testelement.TestElement.Companion
-
Field Summary
Fields inherited from interface org.apache.jmeter.testelement.TestElement
COMMENTS, Companion, ENABLED, GUI_CLASS, NAME, TEST_CLASS
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturn the client choice.long
long
boolean
Handle an interrupt of the test.boolean
sample()
sample method will check which client it should use and call the appropriate client specific sample method.void
setClientChoice
(String choice) Set the client choice.void
setClientID
(String clientId) void
setDurableSubscriptionId
(String durableSubscriptionId) void
setJmsSelector
(String jmsSelector) void
setPauseBetweenErrors
(String pause) void
setSeparator
(String text) Separator for sampler resultsvoid
setStopBetweenSamples
(boolean selected) void
setTimeout
(String timeout) void
Called once for all threads after the end of a test.void
Called once for all threads after the end of a test.void
Called just before the start of the test from the main engine thread.void
testStarted
(String host) Called just before the start of the test from the main engine thread.void
Close subscriber.void
threadFinished
(boolean wts) void
Initialise the thread-local variables.void
threadStarted
(boolean wts) Methods inherited from class org.apache.jmeter.protocol.jms.sampler.BaseJMSSampler
configureIsReconnectErrorCode, getConnectionFactory, getDestination, getIsReconnectErrorCode, getIterationCount, getIterations, getJNDIInitialContextFactory, getMessageHeaders, getPassword, getProviderUrl, getReadResponse, getReadResponseAsBoolean, getReconnectionErrorCodes, getUseJNDIProperties, getUseJNDIPropertiesAsBoolean, getUsername, isDestinationStatic, isUseAuth, sample, setConnectionFactory, setDestination, setDestinationStatic, setIterations, setJNDIIntialContextFactory, setPassword, setProviderUrl, setReadResponse, setReconnectionErrorCodes, setUseAuth, setUseJNDIProperties, setUsername
Methods inherited from class org.apache.jmeter.samplers.AbstractSampler
applies
Methods inherited from class org.apache.jmeter.testelement.AbstractTestElement
addPropertiesValues, addProperty, addProperty, addTestElement, canRemove, clear, clearTemporary, clearTestElementChildren, clone, emptyTemporary, equals, getComment, getName, getProperty, getPropertyAsBoolean, getPropertyAsBoolean, getPropertyAsDouble, getPropertyAsFloat, getPropertyAsInt, getPropertyAsInt, getPropertyAsLong, getPropertyAsLong, getPropertyAsString, getPropertyAsString, getPropertyOrNull, getSearchableTokens, getThreadContext, getThreadName, hashCode, isEnabled, isRunningVersion, isTemporary, logProperties, mergeIn, propertyIterator, recoverRunningVersion, removeProperty, setComment, setEnabled, setName, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setRunningVersion, setTemporary, setThreadContext, setThreadName, traverse, traverseCollection, traverseMap, traverseProperty
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.jmeter.testelement.TestElement
addTestElement, canRemove, clear, clearTestElementChildren, clone, get, get, get, get, get, get, get, get, get, getComment, getName, getOrCreate, getOrCreate, getOrNull, getOrNull, getOrNull, getProperty, getPropertyAsBoolean, getPropertyAsBoolean, getPropertyAsDouble, getPropertyAsFloat, getPropertyAsInt, getPropertyAsInt, getPropertyAsLong, getPropertyAsLong, getPropertyAsString, getPropertyAsString, getPropertyOrNull, getPropertyOrNull, getProps, getSchema, getString, getThreadContext, getThreadName, isEnabled, isRunningVersion, isTemporary, propertyIterator, recoverRunningVersion, removed, removeProperty, removeProperty, set, set, set, set, set, set, set, set, set, setComment, setEnabled, setName, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setProperty, setRunningVersion, setTemporary, setThreadContext, setThreadName, traverse
-
Constructor Details
-
SubscriberSampler
public SubscriberSampler()
-
-
Method Details
-
sample
sample method will check which client it should use and call the appropriate client specific sample method.- Specified by:
sample
in classBaseJMSSampler
- Returns:
- the appropriate sample result
-
threadStarted
public void threadStarted()Initialise the thread-local variables.
Called for each thread before starting sampling. WARNING: this is called before any Config test elements are processed, so any properties they define will not have been merged in yet. See org.apache.jmeter.threads.JMeterThread#threadStarted()- Specified by:
threadStarted
in interfaceThreadListener
-
threadStarted
public void threadStarted(boolean wts) -
threadFinished
public void threadFinished()Close subscriber.
Called for each thread after all samples have been processed. See org.apache.jmeter.threads.JMeterThread#threadFinished(org.apache.jmeter.engine.event.LoopIterationListener)- Specified by:
threadFinished
in interfaceThreadListener
-
threadFinished
public void threadFinished(boolean wts) -
interrupt
public boolean interrupt()Handle an interrupt of the test.- Specified by:
interrupt
in interfaceInterruptible
- Returns:
true
if there was an operation to interrupt.
-
setClientChoice
Set the client choice. There are two options: ReceiveSusbscriber and OnMessageSubscriber.- Parameters:
choice
- the client to use. One ofRECEIVE_RSC
orON_MESSAGE_RSC
-
getClientChoice
Return the client choice.- Returns:
- the client choice, either
RECEIVE_RSC
orON_MESSAGE_RSC
-
getTimeout
-
getTimeoutAsLong
public long getTimeoutAsLong() -
setTimeout
-
getDurableSubscriptionId
-
getClientId
- Returns:
- JMS Client ID
-
getJmsSelector
- Returns:
- JMS selector
-
setDurableSubscriptionId
-
setClientID
- Parameters:
clientId
- JMS CLient id
-
setJmsSelector
- Parameters:
jmsSelector
- JMS Selector
-
getSeparator
- Returns:
- Separator for sampler results
-
setSeparator
Separator for sampler results- Parameters:
text
- separator to use for sampler results
-
isStopBetweenSamples
public boolean isStopBetweenSamples() -
setStopBetweenSamples
public void setStopBetweenSamples(boolean selected) -
setPauseBetweenErrors
-
getPauseBetweenErrors
-
getPauseBetweenErrorsAsLong
public long getPauseBetweenErrorsAsLong() -
testEnded
public void testEnded()Called once for all threads after the end of a test. This will use the same element instances as at the start of the test.
N.B. testStarted() and testEnded() are called from different threads.
- Specified by:
testEnded
in interfaceTestStateListener
- See Also:
-
testEnded
Called once for all threads after the end of a test. This will use the same element instances as at the start of the test.
N.B. testStarted() and testEnded() are called from different threads.
- Specified by:
testEnded
in interfaceTestStateListener
- Parameters:
host
- name of host- See Also:
-
testStarted
public void testStarted()Called just before the start of the test from the main engine thread. This is before the test elements are cloned. Note that not all the test variables will have been set up at this point.
N.B. testStarted() and testEnded() are called from different threads.
- Specified by:
testStarted
in interfaceTestStateListener
- See Also:
-
testStarted
Called just before the start of the test from the main engine thread. This is before the test elements are cloned. Note that not all the test variables will have been set up at this point.
N.B. testStarted() and testEnded() are called from different threads.
- Specified by:
testStarted
in interfaceTestStateListener
- Parameters:
host
- name of host- See Also:
-