Membrane.Pipeline.start_link
You're seeing just the function
start_link
, go back to Membrane.Pipeline module for more information.
Link to this function
start_link(module, pipeline_options \\ nil, process_options \\ [])
View SourceSpecs
start_link( module(), pipeline_options :: pipeline_options_t(), process_options :: GenServer.options() ) :: GenServer.on_start()
Starts the Pipeline based on given module and links it to the current process.
Pipeline options are passed to module's handle_init/1
callback.
Process options are internally passed to GenServer.start_link/3
.
Returns the same values as GenServer.start_link/3
.