Membrane.ChildEntry (Membrane Core v0.8.1) View Source

Struct describing child entry of a parent.

The public fields are:

  • name - child name
  • module - child module
  • options - options passed to the child
  • component_type - either :element or :bin

Other fields in the struct ARE NOT PART OF THE PUBLIC API and should not be accessed or relied on.

Link to this section Summary

Link to this section Types

Specs

t() :: %Membrane.ChildEntry{
  clock: Membrane.Clock.t(),
  component_type: :element | :bin,
  module: module(),
  name: Membrane.Child.name_t(),
  options: struct() | nil,
  pid: pid(),
  playback_synced?: boolean(),
  sync: Membrane.Sync.t(),
  terminating?: boolean()
}