package action
Type Members
- trait Action extends StrictLogging
Top level abstraction in charge of executing concrete actions along a scenario, for example sending an HTTP request.
- class ActorDelegatingAction extends Action
- 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.
- trait ExitableAction extends ChainableAction
An Action that can trigger a forced exit and bypass regular workflow.
- final case class FeedMessage(session: Session, num: Option[Int], next: Action) extends Product with Serializable
- class InnerLoop extends ChainableAction
- class InnerTryMax extends ChainableAction
- trait RequestAction extends ExitableAction
- class SessionHook extends ChainableAction
- class StopInjector extends ChainableAction with NameGen