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/session_results.ex
defmodule RtmpSession.SessionResults do
@moduledoc """
Represents bytes to be sent to the peer, along with events that should
be raised to the owner of the Rtmp Session
"""
@type t :: %__MODULE__{
bytes_to_send: iolist(),
events: [RtmpSession.Events.t]
}
defstruct bytes_to_send: <<>>,
events: []
end