Packages

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.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Paces
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def make(f: Function[W, W]): T

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. 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()
  15. 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()
  16. 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, or Durations.

    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()
  17. 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()
  18. 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()
  19. 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()
  20. 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()
  21. 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()
  22. 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()
  23. 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 a Duration.

    duration

    the duration of the pace

    counterName

    the name of the loop counter, as stored in the Session

    returns

    a new StructureBuilder

    Annotations
    @NonNull()
  24. 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 a Duration.

    duration

    the duration of the pace

    returns

    a new StructureBuilder

    Annotations
    @NonNull()
  25. 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()
  26. 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()
  27. 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()
  28. 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()
  29. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped