Uses of Class
us.abstracta.jmeter.javadsl.core.controllers.DslWhileController
-
Packages that use DslWhileController Package Description us.abstracta.jmeter.javadsl -
-
Uses of DslWhileController in us.abstracta.jmeter.javadsl
Methods in us.abstracta.jmeter.javadsl that return DslWhileController Modifier and Type Method Description static DslWhileControllerJmeterDsl. whileController(Class<? extends PropertyScriptBuilder.PropertyScript<Boolean>> conditionClass, BaseThreadGroup.ThreadGroupChild... children)Same asJmeterDsl.whileController(PropertyScript, ThreadGroupChild...)but with support for running at scale in a remote engine.static DslWhileControllerJmeterDsl. whileController(String name, Class<? extends PropertyScriptBuilder.PropertyScript<Boolean>> conditionClass, BaseThreadGroup.ThreadGroupChild... children)Same asJmeterDsl.whileController(Class, ThreadGroupChild...)but allowing to set a name which defines autogenerated variable created by JMeter containing iteration index.static DslWhileControllerJmeterDsl. whileController(String name, String condition, BaseThreadGroup.ThreadGroupChild... children)Same asJmeterDsl.whileController(String, ThreadGroupChild...)but allowing to set a name which defines autogenerated variable created by JMeter containing iteration index.static DslWhileControllerJmeterDsl. whileController(String condition, BaseThreadGroup.ThreadGroupChild... children)Builds a While Controller that allows to run specific part of the test plan while a given condition is met in one thread iteration.static DslWhileControllerJmeterDsl. whileController(String name, PropertyScriptBuilder.PropertyScript<Boolean> condition, BaseThreadGroup.ThreadGroupChild... children)Same asJmeterDsl.whileController(PropertyScript, ThreadGroupChild...)but allowing to set a name which defines autogenerated variable created by JMeter containing iteration index.static DslWhileControllerJmeterDsl. whileController(PropertyScriptBuilder.PropertyScript<Boolean> condition, BaseThreadGroup.ThreadGroupChild... children)Same asJmeterDsl.whileController(String, ThreadGroupChild...)but allowing to use Java type safety and code completion when specifying the condition.
-