View Source Chaperon.Action.RunScenario (chaperon v0.3.1)

Action that runs a Chaperon.Scenario module from the current session.

Link to this section Summary

Link to this section Types

@type scenario() :: module() | Chaperon.Scenario.t()
@type scheduler() :: :local | :cluster
@type t() :: %Chaperon.Action.RunScenario{
  config: map(),
  id: String.t(),
  pid: pid(),
  scenario: Chaperon.Scenario.t(),
  scheduler: scheduler()
}

Link to this section Functions

Link to this function

new(scenario, config, scheduler)

View Source