Packages

p

io.gatling.core

action

package action

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. trait Action extends StrictLogging

    Top level abstraction in charge of executing concrete actions along a scenario, for example sending an HTTP request.

    Top level abstraction in charge of executing concrete actions along a scenario, for example sending an HTTP request. It is implemented as an Akka Actor that receives Session messages.

  2. trait ActorBasedAction extends AnyRef
  3. class ActorDelegatingAction extends Action
  4. case class BlockExit(exitAction: Action, session: Session, groupsToClose: List[GroupBlock]) extends Product with Serializable

    Describes an interruption to be performed.

    Describes an interruption to be performed.

    exitAction

    the action to execute next, instead of following the regular workflow.

    session

    the new Session to be sent to exitAction

    groupsToClose

    the groups to be closed as we bypass the regular GroupEnd from the regular flow

  5. trait ChainableAction extends Action

    An Action that is to be chained with another.

    An Action that is to be chained with another. Almost all Gatling Actions are Chainable. For example, the final Action at the end of a scenario workflow is not.

  6. class Exit extends Action
  7. class ExitHereIfFailed extends Action with ChainableAction with NameGen
  8. trait ExitableAction extends ChainableAction

    An Action that can trigger a forced exit and bypass regular workflow.

  9. class ExitableActorDelegatingAction extends ActorDelegatingAction with ExitableAction
  10. class Feed extends ExitableAction with NameGen
  11. case class FeedMessage(session: Session, number: Expression[Int], next: Action) extends Product with Serializable
  12. class GroupEnd extends ChainableAction with NameGen
  13. class GroupStart extends ExitableAction with NameGen
  14. class If extends ExitableAction with NameGen
  15. class InnerLoop extends ChainableAction
  16. class InnerTryMax extends ChainableAction
  17. class Loop extends Action
  18. class Pace extends ExitableAction with NameGen

    Pace provides a means to limit the frequency with which an action is run, by specifying a minimum wait time between iterations.

    Pace provides a means to limit the frequency with which an action is run, by specifying a minimum wait time between iterations.

    Originally contributed by James Pickering.

  19. class Pause extends ExitableAction
  20. class RendezVousActor extends BaseActor

    Buffer Sessions until users is reached, then unleash buffer and become passthrough.

  21. trait RequestAction extends ExitableAction
  22. class SessionHook extends ChainableAction
  23. class SingletonFeed[T] extends BaseActor
  24. class Switch extends ExitableAction
  25. class TryMax extends Action with NameGen

Value Members

  1. object BlockExit extends Serializable
  2. object RendezVous extends NameGen
  3. object RendezVousActor
  4. object SingletonFeed

Ungrouped