Current section
Files
Jump to
Current section
Files
lib/membrane_ice_plugin/handshake/event.ex
defmodule Membrane.ICE.Handshake.Event do
@moduledoc """
Event sent by ICE Sink and Source on Bin input and output pads after successful handshake.
"""
@derive Membrane.EventProtocol
@type t :: %__MODULE__{handshake_data: any()}
defstruct handshake_data: nil
end