Membrane.Payload protocol (Membrane Core v0.7.0) View Source
This protocol describes actions common to all payload types.
The most basic payload type is simply a binary for which Elixir.Membrane.Payload
is implemented by the Membrane Core.
Link to this section Summary
Functions
Concatenates the contents of two payloads.
Drops first n
bytes of payload.
Returns a module responsible for this type of payload
and implementing Membrane.Payload.Behaviour
Returns total size of payload in bytes
Splits the payload at given position (1st part has the size equal to at_pos
argument)
Converts payload into binary
Link to this section Types
Specs
t() :: any()
Link to this section Functions
Specs
Concatenates the contents of two payloads.
Specs
drop(payload :: t(), n :: non_neg_integer()) :: t()
Drops first n
bytes of payload.
Specs
Returns a module responsible for this type of payload
and implementing Membrane.Payload.Behaviour
Specs
size(payload :: t()) :: non_neg_integer()
Returns total size of payload in bytes
Specs
split_at(payload :: t(), at_pos :: pos_integer()) :: {t(), t()}
Splits the payload at given position (1st part has the size equal to at_pos
argument)
at_pos
has to be greater than 0 and smaller than the size of payload, otherwise
an error is raised. This guarantees returned payloads are never empty.
Specs
Converts payload into binary