Packages

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

Methods for defining "during" loops that iterate over a block for a maximum duration.

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. During
  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. def during(duration: Function[Session, Duration], counterName: String, exitASAP: Boolean): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration, expressed as a function

    counterName

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

    exitASAP

    if the loop must be interrupted if the max duration is reached inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  7. def during(duration: Function[Session, Duration], counterName: String): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration, expressed as a function

    counterName

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

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  8. def during(duration: Function[Session, Duration], exitASAP: Boolean): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration, expressed as a function

    exitASAP

    if the loop must be interrupted if the max duration is reached inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  9. def during(duration: Function[Session, Duration]): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration, expressed as a function

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  10. def during(duration: String, counterName: String, exitASAP: Boolean): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration, expressed as a Gatling Expression Language String

    counterName

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

    exitASAP

    if the loop must be interrupted if the max duration is reached inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  11. def during(duration: String, counterName: String): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration, expressed as a Gatling Expression Language String that must either evaluate to an Integer (seconds then) or a Duration

    counterName

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

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  12. def during(duration: String, exitASAP: Boolean): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration, expressed as a Gatling Expression Language String that must either evaluate to an Integer (seconds then) or a Duration

    exitASAP

    if the loop must be interrupted if the max duration is reached inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  13. def during(duration: String): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration, expressed as a Gatling Expression Language String that must either evaluate to an Integer (seconds then) or a Duration

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  14. def during(duration: Duration, counterName: String, exitASAP: Boolean): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration

    counterName

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

    exitASAP

    if the loop must be interrupted if the max duration is reached inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  15. def during(duration: Duration, counterName: String): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration

    counterName

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

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  16. def during(duration: Duration, exitASAP: Boolean): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration

    exitASAP

    if the loop must be interrupted if the max duration is reached inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  17. def during(duration: Duration): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  18. def during(duration: Long, counterName: String, exitASAP: Boolean): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration, expressed as a number of seconds

    counterName

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

    exitASAP

    if the loop must be interrupted if the max duration is reached inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  19. def during(duration: Long, counterName: String): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration, expressed as a number of seconds

    counterName

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

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  20. def during(duration: Long, exitASAP: Boolean): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration, expressed as a number of seconds

    exitASAP

    if the loop must be interrupted if the max duration is reached inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  21. def during(duration: Long): On[T]

    Define a loop that will iterate for a given duration.

    Define a loop that will iterate for a given duration. The condition is evaluated at the end of the loop.

    duration

    the maximum duration, expressed as a number of seconds

    returns

    a DSL component for defining the loop content

    Annotations
    @Nonnull()
  22. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  24. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  25. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  26. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  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