Packages

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

Methods for defining "asLongAs" 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. AsLongAs
  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 asLongAs(condition: Function[Session, Boolean], counterName: String, exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true

    Define a loop that will iterate as long as the condition holds true

    condition

    the condition, 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 inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  6. def asLongAs(condition: Function[Session, Boolean], exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true

    Define a loop that will iterate as long as the condition holds true

    condition

    the condition, expressed as a function

    exitASAP

    if the loop must be interrupted if the condition becomes false inside the loop

    returns

    a DSL component for defining the loop content

  7. def asLongAs(condition: Function[Session, Boolean], counterName: String): On[T]

    Define a loop that will iterate as long as the condition holds true

    Define a loop that will iterate as long as the condition holds true

    condition

    the condition, 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 asLongAs(condition: Function[Session, Boolean]): On[T]

    Define a loop that will iterate as long as the condition holds true

    Define a loop that will iterate as long as the condition holds true

    condition

    the condition, expressed as a function

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  9. def asLongAs(condition: String, counterName: String, exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true

    Define a loop that will iterate as long as the condition holds true

    condition

    the condition, 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 condition becomes false inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  10. def asLongAs(condition: String, exitASAP: Boolean): On[T]

    Define a loop that will iterate as long as the condition holds true

    Define a loop that will iterate as long as the condition holds true

    condition

    the condition, expressed as a Gatling Expression Language String

    exitASAP

    if the loop must be interrupted if the condition becomes false inside the loop

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  11. def asLongAs(condition: String, counterName: String): On[T]

    Define a loop that will iterate as long as the condition holds true

    Define a loop that will iterate as long as the condition holds true

    condition

    the condition, expressed as a Gatling Expression Language String

    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 asLongAs(condition: String): On[T]

    Define a loop that will iterate as long as the condition holds true

    Define a loop that will iterate as long as the condition holds true

    condition

    the condition, expressed as a Gatling Expression Language String

    returns

    a DSL component for defining the loop content

    Annotations
    @NonNull()
  13. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. 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