Packages

trait Pauses[T <: StructureBuilder[T, W], W <: core.structure.StructureBuilder[W]] extends AnyRef

Pause methods for defining pause/think time steps in a Scenario.

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. Pauses
  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. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. def pause(min: Function[Session, Duration], max: Function[Session, Duration], pauseType: PauseType): T

    Attach a pause computed randomly between 2 values as functions.

    Attach a pause computed randomly between 2 values as functions.

    min

    the pause minimum

    max

    the pause maximum

    pauseType

    the type of pause

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  16. def pause(min: Function[Session, Duration], max: Function[Session, Duration]): T

    Attach a pause computed randomly between 2 values as functions.

    Attach a pause computed randomly between 2 values as functions.

    min

    the pause minimum

    max

    the pause maximum

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  17. def pause(min: String, max: String, pauseType: PauseType): T

    Attach a pause computed randomly between 2 values as a Gatling Expression Language string.

    Attach a pause computed randomly between 2 values as a Gatling Expression Language string. Those expressions must resolve to either Integers, then the unit will be seconds, or a Duration.

    min

    the pause minimum

    max

    the pause maximum

    pauseType

    the type of pause

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  18. def pause(min: String, max: String): T

    Attach a pause computed randomly between 2 values as a Gatling Expression Language string.

    Attach a pause computed randomly between 2 values as a Gatling Expression Language string. Those expressions must resolve to either Integers, then the unit will be seconds, or a Duration.

    min

    the pause minimum

    max

    the pause maximum

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  19. def pause(min: Duration, max: Duration, pauseType: PauseType): T

    Attach a pause computed randomly between 2 values

    Attach a pause computed randomly between 2 values

    min

    the pause minimum

    max

    the pause maximum

    pauseType

    the type of pause

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  20. def pause(min: Duration, max: Duration): T

    Attach a pause computed randomly between 2 values

    Attach a pause computed randomly between 2 values

    min

    the pause minimum

    max

    the pause maximum

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  21. def pause(min: Long, max: Long, pauseType: PauseType): T

    Attach a pause computed randomly between 2 values in seconds

    Attach a pause computed randomly between 2 values in seconds

    min

    the pause minimum in seconds

    max

    the pause maximum in seconds

    pauseType

    the type of pause

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  22. def pause(min: Long, max: Long): T

    Attach a pause computed randomly between 2 values in seconds

    Attach a pause computed randomly between 2 values in seconds

    min

    the pause minimum in seconds

    max

    the pause maximum in seconds

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  23. def pause(f: Function[Session, Duration], pauseType: PauseType): T

    Attach a pause as a function

    Attach a pause as a function

    f

    the pause duration as a function

    pauseType

    the type of pause

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  24. def pause(f: Function[Session, Duration]): T

    Attach a pause as a function

    Attach a pause as a function

    f

    the pause duration as a function

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  25. def pause(duration: String, pauseType: PauseType): T

    Attach a pause as a Gatling Expression Language string.

    Attach a pause 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 pause duration as a Gatling Expression Language string

    pauseType

    the type of pause

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  26. def pause(duration: String): T

    Attach a pause as a Gatling Expression Language string.

    Attach a pause 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 pause duration as a Gatling Expression Language string

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  27. def pause(duration: Duration, pauseType: PauseType): T

    Attach a pause

    Attach a pause

    duration

    the pause duration

    pauseType

    the type of pause

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  28. def pause(duration: Duration): T

    Attach a pause

    Attach a pause

    duration

    the pause duration

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  29. def pause(duration: Long, pauseType: PauseType): T

    Attach a pause

    Attach a pause

    duration

    the pause duration in seconds

    pauseType

    the type of pause

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  30. def pause(duration: Long): T

    Attach a pause

    Attach a pause

    duration

    the pause duration in seconds

    returns

    a new StructureBuilder

    Annotations
    @Nonnull()
  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped