View Source Membrane.Element (Membrane Core v0.10.2)

Module containing types and functions for operating on elements.

For behaviours for elements chceck Membrane.Source, Membrane.Filter, Membrane.Endpoint and Membrane.Sink.

Link to this section Summary

Types

Type that defines an element name by which it is identified.

Defines options that can be received in Membrane.Element.Base.handle_init/1 callback.

Type of user-managed state of element.

Defines possible element types

Functions

Checks whether module is an element.

Link to this section Types

@type name_t() :: any()

Type that defines an element name by which it is identified.

@type options_t() :: struct() | nil

Defines options that can be received in Membrane.Element.Base.handle_init/1 callback.

@type state_t() :: map() | struct()

Type of user-managed state of element.

@type type_t() :: :source | :filter | :endpoint | :sink

Defines possible element types:

  • source, producing buffers
  • filter, processing buffers
  • endpoint, producing and consuming buffers
  • sink, consuming buffers

Link to this section Functions

@spec element?(module()) :: boolean()

Checks whether module is an element.