DynamicSupervisor Proxy v0.1.5 DynamicSupervisor.Proxy 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

Link to this macro

start_link(mod, arg, opts) View Source (macro)

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)