DynamicSupervisor.Proxy (DynamicSupervisor Proxy v0.1.14) View Source
Link to this section Summary
Functions
Starts a module-based supervisor process with the given module
and arg
.
The :name
option must be given in order to register a supervisor name.
Will wait a bit if the supervisor name is still registered on restarts.
See: Supervisor restart backoff
Link to this section Functions
Starts a module-based supervisor process with the given module
and arg
.
The :name
option must be given in order to register a supervisor name.
Will wait a bit if the supervisor name is still registered on restarts.
See: Supervisor restart backoff
Examples
use DynamicSupervisor.Proxy
def start_link(:ok), do: start_link(DynSup, :ok, name: DynSup)