Packages
eml_rtmp_session
0.1.0
Provides an abstraction of the RTMP protocol and represents a single peer in an RTMP connection
Current section
Files
Jump to
Current section
Files
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