Packages

t

io.gatling.javaapi.core.loop

AsLongAsDuring

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

Methods for defining "asLongAsDuring" loops.

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

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a function

    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 condition becomes false or the maximum duration inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  6. def asLongAsDuring(condition: Function[Session, Boolean], duration: Long, counterName: String, exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a function

    duration

    the maximum duration in seconds

    counterName

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

    exitASAP

    if the loop must be interrupted if the condition becomes false or the maximum duration inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  7. def asLongAsDuring(condition: Function[Session, Boolean], duration: Function[Session, Duration], counterName: String, exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a function

    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 condition becomes false or the maximum duration inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  8. def asLongAsDuring(condition: Function[Session, Boolean], duration: Duration, exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a function

    duration

    the maximum duration

    exitASAP

    if the loop must be interrupted if the condition becomes false or the maximum duration inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  9. def asLongAsDuring(condition: Function[Session, Boolean], duration: Long, exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a function

    duration

    the maximum duration in seconds

    exitASAP

    if the loop must be interrupted if the condition becomes false or the maximum duration inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  10. def asLongAsDuring(condition: Function[Session, Boolean], duration: Function[Session, Duration], exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a function

    duration

    the maximum duration, expressed as a function

    exitASAP

    if the loop must be interrupted if the condition becomes false or the maximum duration inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  11. def asLongAsDuring(condition: Function[Session, Boolean], duration: Duration, counterName: String): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a function

    duration

    the maximum duration in seconds

    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 asLongAsDuring(condition: Function[Session, Boolean], duration: Long, counterName: String): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a function

    duration

    the maximum duration in seconds

    counterName

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

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  13. def asLongAsDuring(condition: Function[Session, Boolean], duration: Function[Session, Duration], counterName: String): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a function

    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()
  14. def asLongAsDuring(condition: Function[Session, Boolean], duration: Duration): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a function

    duration

    the maximum duration in seconds

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  15. def asLongAsDuring(condition: Function[Session, Boolean], duration: Long): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a function

    duration

    the maximum duration in seconds

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  16. def asLongAsDuring(condition: Function[Session, Boolean], duration: Function[Session, Duration]): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a function

    duration

    the maximum duration, expressed as a function

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  17. def asLongAsDuring(condition: String, duration: Function[Session, Duration], counterName: String, exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    duration

    the maximum duration function

    counterName

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

    exitASAP

    if the loop must be interrupted if the condition becomes false or the maximum duration inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  18. def asLongAsDuring(condition: String, duration: Duration, counterName: String, exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    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 condition becomes false or the maximum duration inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  19. def asLongAsDuring(condition: String, duration: Long, counterName: String, exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    duration

    the maximum duration in seconds

    counterName

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

    exitASAP

    if the loop must be interrupted if the condition becomes false or the maximum duration inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  20. def asLongAsDuring(condition: String, duration: String, counterName: String, exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    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

    exitASAP

    if the loop must be interrupted if the condition becomes false or the maximum duration inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  21. def asLongAsDuring(condition: String, duration: Function[Session, Duration], exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    duration

    the maximum duration function

    exitASAP

    if the loop must be interrupted if the condition becomes false or the maximum duration inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  22. def asLongAsDuring(condition: String, duration: Duration, exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    duration

    the maximum duration

    exitASAP

    if the loop must be interrupted if the condition becomes false or the maximum duration inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  23. def asLongAsDuring(condition: String, duration: Long, exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    duration

    the maximum duration in seconds

    exitASAP

    if the loop must be interrupted if the condition becomes false or the maximum duration inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  24. def asLongAsDuring(condition: String, duration: String, exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    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 condition becomes false or the maximum duration inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  25. def asLongAsDuring(condition: String, duration: Function[Session, Duration], counterName: String): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    duration

    the maximum duration function

    counterName

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

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  26. def asLongAsDuring(condition: String, duration: Duration, counterName: String): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    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()
  27. def asLongAsDuring(condition: String, duration: Long, counterName: String): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    duration

    the maximum duration in seconds

    counterName

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

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  28. def asLongAsDuring(condition: String, duration: String, counterName: String): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    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()
  29. def asLongAsDuring(condition: String, duration: Function[Session, Duration]): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    duration

    the maximum duration function

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  30. def asLongAsDuring(condition: String, duration: Duration): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    duration

    the maximum duration

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  31. def asLongAsDuring(condition: String, duration: Long): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    duration

    the maximum duration in seconds

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  32. def asLongAsDuring(condition: String, duration: String): On[T]

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    Define a loop that will iterate as long as the condition holds true and a maximum duration isn't reached

    condition

    the condition, expressed as a Gatling Expression Language String

    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()
  33. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  34. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  35. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  36. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  37. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  38. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  39. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  40. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  41. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  42. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  43. def toString(): String
    Definition Classes
    AnyRef → Any
  44. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  45. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  46. 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