Packages

Provides an abstraction of the RTMP protocol and represents a single peer in an RTMP connection

Current section

Files

Jump to
eml_rtmp_session lib rtmp_session detailed_message.ex
Raw

lib/rtmp_session/detailed_message.ex

defmodule RtmpSession.DetailedMessage do
@moduledoc """
Represents the details of a deserialized RTMP message
"""
@type t :: %__MODULE__{
timestamp: non_neg_integer,
stream_id: non_neg_integer,
content: RtmpSession.deserialized_message,
force_uncompressed: boolean,
deserialization_system_time: pos_integer
}
defstruct timestamp: nil,
stream_id: nil,
content: nil,
force_uncompressed: false,
deserialization_system_time: nil
end