Trait

io.gatling.core.structure

StructureBuilder

Related Doc: package structure

Permalink

trait StructureBuilder[B <: StructureBuilder[B]] extends Execs[B] with Pauses[B] with Feeds[B] with Loops[B] with ConditionalStatements[B] with Errors[B] with Groups[B]

This trait defines most of the scenario related DSL

Linear Supertypes
Groups[B], Errors[B], ConditionalStatements[B], Loops[B], Feeds[B], Pauses[B], Execs[B], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StructureBuilder
  2. Groups
  3. Errors
  4. ConditionalStatements
  5. Loops
  6. Feeds
  7. Pauses
  8. Execs
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def asLongAs(condition: Expression[Boolean], counterName: String = UUID.randomUUID.toString, exitASAP: Boolean = false, loopType: LoopType = AsLongAsLoopType)(chain: ChainBuilder): B

    Permalink
    Definition Classes
    Loops
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def doIf(condition: Expression[Boolean])(thenNext: ChainBuilder): B

    Permalink

    Method used to add a conditional execution in the scenario

    Method used to add a conditional execution in the scenario

    condition

    the function that will determine if the condition is satisfied or not

    thenNext

    the chain to be executed if the condition is satisfied

    returns

    a new builder with a conditional execution added to its actions

    Definition Classes
    ConditionalStatements
  8. def doIfEquals(actual: Expression[Any], expected: Expression[Any])(thenNext: ChainBuilder): B

    Permalink

    Method used to add a conditional execution in the scenario

    Method used to add a conditional execution in the scenario

    actual

    the real value

    expected

    the expected value

    thenNext

    the chain to be executed if the condition is satisfied

    returns

    a new builder with a conditional execution added to its actions

    Definition Classes
    ConditionalStatements
  9. def doIfEqualsOrElse(actual: Expression[Any], expected: Expression[Any])(thenNext: ChainBuilder)(elseNext: ChainBuilder): B

    Permalink

    Method used to add a conditional execution in the scenario with a fall back action if condition is not satisfied

    Method used to add a conditional execution in the scenario with a fall back action if condition is not satisfied

    actual

    the real value

    expected

    the expected value

    thenNext

    the chain to be executed if the condition is satisfied

    elseNext

    the chain to be executed if the condition is not satisfied

    returns

    a new builder with a conditional execution added to its actions

    Definition Classes
    ConditionalStatements
  10. def doIfOrElse(condition: Expression[Boolean])(thenNext: ChainBuilder)(elseNext: ChainBuilder): B

    Permalink

    Method used to add a conditional execution in the scenario with a fall back action if condition is not satisfied

    Method used to add a conditional execution in the scenario with a fall back action if condition is not satisfied

    condition

    the function that will determine if the condition is satisfied or not

    thenNext

    the chain to be executed if the condition is satisfied

    elseNext

    the chain to be executed if the condition is not satisfied

    returns

    a new builder with a conditional execution added to its actions

    Definition Classes
    ConditionalStatements
  11. def doSwitch(value: Expression[Any])(possibilities: (Any, ChainBuilder)*): B

    Permalink

    Add a switch in the chain.

    Add a switch in the chain. Every possible subchain is defined with a key. Switch is selected through the matching of a key with the evaluation of the passed expression. If no switch is selected, switch is bypassed.

    value

    expression to evaluate and match to find the right subchain

    possibilities

    tuples of key and subchain

    returns

    a new builder with a switch added to its actions

    Definition Classes
    ConditionalStatements
  12. def doSwitchOrElse(value: Expression[Any])(possibilities: (Any, ChainBuilder)*)(elseNext: ChainBuilder): B

    Permalink

    Add a switch in the chain.

    Add a switch in the chain. Every possible subchain is defined with a key. Switch is selected through the matching of a key with the evaluation of the passed expression. If no switch is selected, the fallback subchain is used.

    value

    expression to evaluate and match to find the right subchain

    possibilities

    tuples of key and subchain

    elseNext

    fallback subchain

    returns

    a new builder with a switch added to its actions

    Definition Classes
    ConditionalStatements
  13. def during(duration: Expression[Duration], counterName: String, exitASAP: Boolean)(chain: ChainBuilder): B

    Permalink
    Definition Classes
    Loops
  14. def during(duration: Duration, counterName: String = UUID.randomUUID.toString, exitASAP: Boolean = true)(chain: ChainBuilder): B

    Permalink
    Definition Classes
    Loops
  15. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  17. def exec(scenario: ScenarioBuilder): B

    Permalink
    Definition Classes
    Execs
  18. def exec(chains: Iterable[ChainBuilder]): B

    Permalink
    Definition Classes
    Execs
  19. def exec(chains: Iterator[ChainBuilder]): B

    Permalink
    Definition Classes
    Execs
  20. def exec(chains: ChainBuilder*): B

    Permalink
    Definition Classes
    Execs
  21. def exec(actionBuilder: ActionBuilder): B

    Permalink
    Definition Classes
    Execs
  22. def exec(sessionFunction: Expression[Session]): B

    Permalink
    Definition Classes
    Execs
  23. def exitBlockOnFail(chain: ChainBuilder): B

    Permalink
    Definition Classes
    Errors
  24. def exitHereIfFailed: B

    Permalink
    Definition Classes
    Errors
  25. def feed(feederBuilder: FeederBuilder[_], number: Expression[Int] = Feeds.oneExpression): B

    Permalink

    Method used to load data from a feeder in the current scenario

    Method used to load data from a feeder in the current scenario

    feederBuilder

    the feeder from which the values will be loaded

    number

    the number of records to be polled (default 1)

    Definition Classes
    Feeds
  26. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. def foreach(seq: Expression[Seq[Any]], attributeName: String, counterName: String = UUID.randomUUID.toString)(chain: ChainBuilder): B

    Permalink
    Definition Classes
    Loops
  28. def forever(counterName: String = UUID.randomUUID.toString, exitASAP: Boolean = false)(chain: ChainBuilder): B

    Permalink
    Definition Classes
    Loops
  29. def forever(chain: ChainBuilder): B

    Permalink
    Definition Classes
    Loops
  30. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  31. def group(name: Expression[String])(chain: ChainBuilder): B

    Permalink
    Definition Classes
    Groups
  32. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  33. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  34. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  35. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  36. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  37. def pace(duration: Expression[Duration], counter: String): B

    Permalink
    Definition Classes
    Pauses
  38. def pace(duration: Expression[Duration]): B

    Permalink
    Definition Classes
    Pauses
  39. def pace(min: Expression[Duration], max: Expression[Duration]): B

    Permalink
    Definition Classes
    Pauses
  40. def pace(min: String, max: String, unit: TimeUnit): B

    Permalink
    Definition Classes
    Pauses
  41. def pace(min: Duration, max: Duration): B

    Permalink
    Definition Classes
    Pauses
  42. def pace(duration: String, unit: TimeUnit = TimeUnit.SECONDS): B

    Permalink
    Definition Classes
    Pauses
  43. def pace(duration: Duration): B

    Permalink
    Definition Classes
    Pauses
  44. def pause(duration: Expression[Duration], force: PauseType): B

    Permalink
    Definition Classes
    Pauses
  45. def pause(duration: Expression[Duration]): B

    Permalink
    Definition Classes
    Pauses
  46. def pause(min: Expression[Duration], max: Expression[Duration], force: PauseType): B

    Permalink
    Definition Classes
    Pauses
  47. def pause(min: Expression[Duration], max: Expression[Duration]): B

    Permalink
    Definition Classes
    Pauses
  48. def pause(min: String, max: String, unit: TimeUnit, force: PauseType): B

    Permalink
    Definition Classes
    Pauses
  49. def pause(min: String, max: String, unit: TimeUnit): B

    Permalink
    Definition Classes
    Pauses
  50. def pause(min: Duration, max: Duration, force: PauseType): B

    Permalink
    Definition Classes
    Pauses
  51. def pause(min: Duration, max: Duration): B

    Permalink
    Definition Classes
    Pauses
  52. def pause(duration: String, unit: TimeUnit, force: PauseType): B

    Permalink
    Definition Classes
    Pauses
  53. def pause(duration: String, unit: TimeUnit): B

    Permalink
    Definition Classes
    Pauses
  54. def pause(duration: String, force: PauseType): B

    Permalink
    Definition Classes
    Pauses
  55. def pause(duration: String): B

    Permalink
    Definition Classes
    Pauses
  56. def pause(duration: Duration, force: PauseType): B

    Permalink
    Definition Classes
    Pauses
  57. def pause(duration: Duration): B

    Permalink

    Method used to define a pause based on a duration defined in the session

    Method used to define a pause based on a duration defined in the session

    duration

    Expression that when resolved, provides the pause duration

    returns

    a new builder with a pause added to its actions

    Definition Classes
    Pauses
  58. def randomSwitch(possibilities: (Double, ChainBuilder)*): B

    Permalink

    Add a switch in the chain.

    Add a switch in the chain. Every possible subchain is defined with a percentage. Switch is selected randomly. If no switch is selected (ie: random number exceeds percentages sum), switch is bypassed. Percentages sum can't exceed 100%.

    possibilities

    the possible subchains

    returns

    a new builder with a random switch added to its actions

    Definition Classes
    ConditionalStatements
  59. def randomSwitchOrElse(possibilities: (Double, ChainBuilder)*)(elseNext: ChainBuilder): B

    Permalink

    Add a switch in the chain.

    Add a switch in the chain. Every possible subchain is defined with a percentage. Switch is selected randomly. If no switch is selected (ie: random number exceeds percentages sum), the subchain defined as the fallback will be used. Percentages sum must be below 100%.

    possibilities

    the possible subchains

    elseNext

    fallback subchain

    returns

    a new builder with a random switch added to its actions

    Definition Classes
    ConditionalStatements
  60. def rendezVous(users: Int): B

    Permalink
    Definition Classes
    Pauses
  61. def repeat(times: Expression[Int], counterName: String = UUID.randomUUID.toString)(chain: ChainBuilder): B

    Permalink
    Definition Classes
    Loops
  62. def roundRobinSwitch(possibilities: ChainBuilder*): B

    Permalink

    Add a switch in the chain.

    Add a switch in the chain. Selection uses a round robin strategy

    possibilities

    the possible subchains

    returns

    a new builder with a random switch added to its actions

    Definition Classes
    ConditionalStatements
  63. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  64. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  65. def tryMax(times: Expression[Int], counter: String = UUID.randomUUID.toString)(chain: ChainBuilder): B

    Permalink
    Definition Classes
    Errors
  66. def uniformRandomSwitch(possibilities: ChainBuilder*): B

    Permalink

    Add a switch in the chain.

    Add a switch in the chain. Selection uses a uniformly distributed random strategy

    possibilities

    the possible subchains

    returns

    a new builder with a random switch added to its actions

    Definition Classes
    ConditionalStatements
  67. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  68. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  69. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Groups[B]

Inherited from Errors[B]

Inherited from ConditionalStatements[B]

Inherited from Loops[B]

Inherited from Feeds[B]

Inherited from Pauses[B]

Inherited from Execs[B]

Inherited from AnyRef

Inherited from Any

Ungrouped