View Source Strom.Flow (strom v0.1.0)

Summary

Types

@type t() :: %Strom.Flow{
  mixers: term(),
  name: term(),
  pid: term(),
  pipelines: term(),
  sinks: term(),
  sources: term(),
  splitters: term(),
  streams: term()
}

Functions

Returns a specification to start this module under a supervisor.

See Supervisor.

Link to this function

start(flow_module, opts \\ [])

View Source