| |
|
| java.lang.Object org.apache.jmeter.testelement.AbstractTestElement org.apache.jmeter.timers.SyncTimer
SyncTimer | public class SyncTimer extends AbstractTestElement implements Timer,Serializable,TestBean(Code) | | The purpose of the SyncTimer is to block threads until X number of threads
have been blocked, and then they are all released at once. A SyncTimer can
thus create large instant loads at various points of the test plan.
author: mike |
Method Summary | |
public Object | clone() We have to control the cloning process because we need some cross-thread
communication if our synctimers are to be able to determine when to block
and when to release. | public long | delay() | public int | getGroupSize() | public void | setGroupSize(int numThreads) |
clone | public Object clone()(Code) | | We have to control the cloning process because we need some cross-thread
communication if our synctimers are to be able to determine when to block
and when to release.
|
delay | public long delay()(Code) | | |
getGroupSize | public int getGroupSize()(Code) | | Returns the numThreads. |
setGroupSize | public void setGroupSize(int numThreads)(Code) | | Parameters: numThreads - The numThreads to set. |
|
|
|