trait Paces[T <: StructureBuilder[T, W], W <: core.structure.StructureBuilder[W]] extends AnyRef
Pace methods for defining point where a given virtual user can't go through too fast (pauses otherwise).
Important: instances are immutable so any method doesn't mutate the existing instance but returns a new one.
- Alphabetic
- By Inheritance
- Paces
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def pace(min: Function[Session, Duration], max: Function[Session, Duration], counterName: String): T
Attach a pace action where the duration is random between 2 bounds as functions
Attach a pace action where the duration is random between 2 bounds as functions
- min
the minimum duration of the pace
- max
the maximum duration of the pace
- counterName
the name of the loop counter, as stored in the
Session- returns
a new StructureBuilder
- Annotations
- @Nonnull()
- def pace(min: Function[Session, Duration], max: Function[Session, Duration]): T
Attach a pace action where the duration is random between 2 bounds as functions
Attach a pace action where the duration is random between 2 bounds as functions
- min
the minimum duration of the pace
- max
the maximum duration of the pace
- returns
a new StructureBuilder
- Annotations
- @Nonnull()
- def pace(min: String, max: String, counterName: String): T
Attach a pace action where the duration is random between 2 bounds as Gatling Expression Language strings.
Attach a pace action where the duration is random between 2 bounds as Gatling Expression Language strings. These expressions must resolve to either
Integers, then the unit will be seconds, orDurations.- min
the minimum duration of the pace
- max
the maximum duration of the pace
- counterName
the name of the loop counter, as stored in the
Session- returns
a new StructureBuilder
- Annotations
- @Nonnull()
- def pace(min: Duration, max: Duration, counterName: String): T
Attach a pace action where the duration is random between 2 bounds
Attach a pace action where the duration is random between 2 bounds
- min
the minimum duration of the pace
- max
the maximum duration of the pace
- counterName
the name of the loop counter, as stored in the
Session- returns
a new StructureBuilder
- Annotations
- @Nonnull()
- def pace(min: Duration, max: Duration): T
Attach a pace action where the duration is random between 2 bounds
Attach a pace action where the duration is random between 2 bounds
- min
the minimum duration of the pace
- max
the maximum duration of the pace
- returns
a new StructureBuilder
- Annotations
- @Nonnull()
- def pace(min: Long, max: Long, counterName: String): T
Attach a pace action where the duration is random between 2 bounds
Attach a pace action where the duration is random between 2 bounds
- min
the minimum duration of the pace in seconds
- max
the maximum duration of the pace in seconds
- counterName
the name of the loop counter, as stored in the
Session- returns
a new StructureBuilder
- Annotations
- @Nonnull()
- def pace(min: Long, max: Long): T
Attach a pace action where the duration is random between 2 bounds
Attach a pace action where the duration is random between 2 bounds
- min
the minimum duration of the pace in seconds
- max
the maximum duration of the pace in seconds
- returns
a new StructureBuilder
- Annotations
- @Nonnull()
- def pace(duration: Function[Session, Duration], counterName: String): T
Attach a pace action
Attach a pace action
- duration
the duration of the pace
- counterName
the name of the loop counter, as stored in the
Session- returns
a new StructureBuilder
- Annotations
- @Nonnull()
- def pace(duration: Function[Session, Duration]): T
Attach a pace action
Attach a pace action
- duration
the duration of the pace
- returns
a new StructureBuilder
- Annotations
- @Nonnull()
- def pace(duration: String, counterName: String): T
Attach a pace action where the duration is defined as a Gatling Expression Language string.
Attach a pace action where the duration is defined as a Gatling Expression Language string. This expression must resolve to either an
Integer, then the unit will be seconds, or aDuration.- duration
the duration of the pace
- counterName
the name of the loop counter, as stored in the
Session- returns
a new StructureBuilder
- Annotations
- @Nonnull()
- def pace(duration: String): T
Attach a pace action where the duration is defined as a Gatling Expression Language string.
Attach a pace action where the duration is defined as a Gatling Expression Language string. This expression must resolve to either an
Integer, then the unit will be seconds, or aDuration.- duration
the duration of the pace
- returns
a new StructureBuilder
- Annotations
- @Nonnull()
- def pace(duration: Duration, counterName: String): T
Attach a pace action
Attach a pace action
- duration
the duration of the pace
- counterName
the name of the loop counter, as stored in the
Session- returns
a new StructureBuilder
- Annotations
- @Nonnull()
- def pace(duration: Duration): T
Attach a pace action
Attach a pace action
- duration
the duration of the pace
- returns
a new StructureBuilder
- Annotations
- @Nonnull()
- def pace(duration: Long, counterName: String): T
Attach a pace action
Attach a pace action
- duration
the duration of the pace in seconds
- counterName
the name of the loop counter, as stored in the
Session- returns
a new StructureBuilder
- Annotations
- @Nonnull()
- def pace(duration: Long): T
Attach a pace action
Attach a pace action
- duration
the duration of the pace in seconds
- returns
a new StructureBuilder
- Annotations
- @Nonnull()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()