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 session_results.ex
Raw

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