View Source Pistis.Core.Supervisor (pistis v0.1.10)

Link to this section Summary

Functions

Returns a specification to start this module under a supervisor.

Link to this section Types

@type init_return() :: %{
  extra_arguments: list(),
  intensity: non_neg_integer(),
  max_children: :infinity | non_neg_integer(),
  period: pos_integer(),
  strategy: :one_for_one
}

Link to this section Functions

Returns a specification to start this module under a supervisor.

See Supervisor.

Link to this function

start_link(init_arg \\ [])

View Source
@spec start_link(any()) :: :ignore | {:error, any()} | {:ok, pid()}
Link to this function

supervise(process_module)

View Source
@spec supervise(atom()) :: any()