Packages

c

io.gatling.javaapi.core

PopulationBuilder

final class PopulationBuilder extends AnyRef

A builder for a Population = a Scenario + an injection profile.

Immutable, meaning each method doesn't mutate the current instance but return a new one.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PopulationBuilder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PopulationBuilder(wrapped: core.structure.PopulationBuilder)

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. def andThen(children: List[PopulationBuilder]): PopulationBuilder

    Define some other PopulationBuilder to be executed once all the users of this PopulationBuilder complete their Scenario.

    Define some other PopulationBuilder to be executed once all the users of this PopulationBuilder complete their Scenario.

    children

    the children PopulationBuilder

    returns

    a new PopulationBuilder

    Annotations
    @Nonnull()
  5. def andThen(children: <repeated...>[PopulationBuilder]): PopulationBuilder

    Define some other PopulationBuilder to be executed once all the users of this PopulationBuilder complete their Scenario.

    Define some other PopulationBuilder to be executed once all the users of this PopulationBuilder complete their Scenario.

    children

    the children PopulationBuilder

    returns

    a new PopulationBuilder

    Annotations
    @Nonnull()
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def asScala(): core.structure.PopulationBuilder

    For internal use only

    For internal use only

    returns

    the wrapped Scala instance

  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  9. def constantPauses(): PopulationBuilder

    Use constant pauses, see PauseType#Constant

    Use constant pauses, see PauseType#Constant

    returns

    a new PopulationBuilder

    Annotations
    @Nonnull()
  10. def customPauses(custom: Function[Session, Long]): PopulationBuilder

    Use custom pauses, see PauseType.Custom

    Use custom pauses, see PauseType.Custom

    returns

    a new PopulationBuilder

    Annotations
    @Nonnull()
  11. def disablePauses(): PopulationBuilder

    Disable the pauses, see PauseType#Disabled

    Disable the pauses, see PauseType#Disabled

    returns

    a new PopulationBuilder

    Annotations
    @Nonnull()
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def exponentialPauses(): PopulationBuilder

    Use exponential pauses, see PauseType#Exponential

    Use exponential pauses, see PauseType#Exponential

    returns

    a new PopulationBuilder

    Annotations
    @Nonnull()
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  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. def noShard(): PopulationBuilder

    Disable the injection profile sharding that happens normally when running with Gatling Enterprise.

    Disable the injection profile sharding that happens normally when running with Gatling Enterprise. Only effective when the test is running with Gatling Enterprise, noop otherwise.

    returns

    a new PopulationBuilder

    Annotations
    @Nonnull()
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def pauses(pauseType: PauseType): PopulationBuilder

    Use pauses configured with a given PauseType

    Use pauses configured with a given PauseType

    pauseType

    the pause type

    returns

    a new PopulationBuilder

    Annotations
    @Nonnull()
  24. def protocols(protocols: List[ProtocolBuilder]): PopulationBuilder

    Define the optional protocols for this PopulationBuilder

    Define the optional protocols for this PopulationBuilder

    protocols

    the protocols

    returns

    a new PopulationBuilder

    Annotations
    @Nonnull()
  25. def protocols(protocols: <repeated...>[ProtocolBuilder]): PopulationBuilder

    Define the optional protocols for this PopulationBuilder

    Define the optional protocols for this PopulationBuilder

    protocols

    the protocols

    returns

    a new PopulationBuilder

    Annotations
    @Nonnull()
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def throttle(throttleSteps: List[ThrottleStep]): PopulationBuilder

    Define the optional throttling profile

    Define the optional throttling profile

    throttleSteps

    the throttling profile steps

    returns

    a new PopulationBuilder

    Annotations
    @Nonnull()
  28. def throttle(throttleSteps: <repeated...>[ThrottleStep]): PopulationBuilder

    Define the optional throttling profile

    Define the optional throttling profile

    throttleSteps

    the throttling profile steps

    returns

    a new PopulationBuilder

    Annotations
    @Nonnull()
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. def uniformPauses(plusOrMinus: Duration): PopulationBuilder

    Use uniform pauses with a standard deviation value, see PauseType.UniformDuration

    Use uniform pauses with a standard deviation value, see PauseType.UniformDuration

    returns

    a new PopulationBuilder

    Annotations
    @Nonnull()
  31. def uniformPauses(plusOrMinus: Double): PopulationBuilder

    Use uniform pauses with a standard deviation percentage, see PauseType.UniformPercentage

    Use uniform pauses with a standard deviation percentage, see PauseType.UniformPercentage

    returns

    a new PopulationBuilder

    Annotations
    @Nonnull()
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped