Uses of Class
us.abstracta.jmeter.javadsl.core.threadgroups.DslDefaultThreadGroup
-
Packages that use DslDefaultThreadGroup Package Description us.abstracta.jmeter.javadsl us.abstracta.jmeter.javadsl.core.threadgroups -
-
Uses of DslDefaultThreadGroup in us.abstracta.jmeter.javadsl
Methods in us.abstracta.jmeter.javadsl that return DslDefaultThreadGroup Modifier and Type Method Description static DslDefaultThreadGroupJmeterDsl. threadGroup()Builds a new thread group without any thread configuration.static DslDefaultThreadGroupJmeterDsl. threadGroup(int threads, int iterations, BaseThreadGroup.ThreadGroupChild... children)Builds a new thread group with a given number of threads & iterations.static DslDefaultThreadGroupJmeterDsl. threadGroup(int threads, Duration duration, BaseThreadGroup.ThreadGroupChild... children)Builds a new thread group with a given number of threads & their duration.static DslDefaultThreadGroupJmeterDsl. threadGroup(String name)Same asJmeterDsl.threadGroup()but allowing to set a name on the thread group.static DslDefaultThreadGroupJmeterDsl. threadGroup(String name, int threads, int iterations, BaseThreadGroup.ThreadGroupChild... children)Same asJmeterDsl.threadGroup(int, int, ThreadGroupChild...)but allowing to set a name on the thread group.static DslDefaultThreadGroupJmeterDsl. threadGroup(String name, int threads, Duration duration, BaseThreadGroup.ThreadGroupChild... children)Same asJmeterDsl.threadGroup(int, Duration, ThreadGroupChild...)but allowing to set a name on the thread group. -
Uses of DslDefaultThreadGroup in us.abstracta.jmeter.javadsl.core.threadgroups
Methods in us.abstracta.jmeter.javadsl.core.threadgroups that return DslDefaultThreadGroup Modifier and Type Method Description DslDefaultThreadGroupDslDefaultThreadGroup. children(BaseThreadGroup.ThreadGroupChild... children)Allows specifying thread group children elements (samplers, listeners, post processors, etc.).DslDefaultThreadGroupDslDefaultThreadGroup. holdFor(String duration)Same asholdFor(Duration)but allowing to use JMeter expressions (variables or functions) to solve the duration.DslDefaultThreadGroupDslDefaultThreadGroup. holdFor(Duration duration)Specifies to keep current number of threads for a given duration.DslDefaultThreadGroupDslDefaultThreadGroup. holdIterating(int iterations)Specifies to keep current number of threads until they execute the given number of iterations each.DslDefaultThreadGroupDslDefaultThreadGroup. holdIterating(String iterations)Same asholdIterating(int)but allowing to use JMeter expressions (variables or functions) to solve the iterations.DslDefaultThreadGroupDslDefaultThreadGroup. rampTo(int threadCount, Duration duration)Allows ramping up or down threads with a given duration.DslDefaultThreadGroupDslDefaultThreadGroup. rampTo(String threadCount, String duration)Same asrampTo(int, Duration)but allowing to use JMeter expressions (variables or functions) to solve the actual parameter values.DslDefaultThreadGroupDslDefaultThreadGroup. rampToAndHold(int threads, Duration rampDuration, Duration holdDuration)simply combinesrampTo(int, Duration)andholdFor(Duration)which are usually used in combination.DslDefaultThreadGroupDslDefaultThreadGroup. rampToAndHold(String threads, String rampDuration, String holdDuration)Same asrampToAndHold(int, Duration, Duration)but allowing to use JMeter expressions (variables or functions) to solve the actual parameter values.DslDefaultThreadGroupDslDefaultThreadGroup. upTo(Duration duration)Specifies to stop thread group if iterations take more than specified duration.
-