Beispiel #1
0
 private void OnIceGatheringStateChanged(IceGatheringState newState)
 {
     Logger.Log($"ICE gathering changed to {newState}.");
     IceGatheringState = newState;
 }
        public static void IceGatheringStateChangedCallback(IntPtr userData, IceGatheringState newState)
        {
            var peer = Utils.ToWrapper <PeerConnection>(userData);

            peer.OnIceGatheringStateChanged(newState);
        }
Beispiel #3
0
 public void OnIceGatheringChange(IceGatheringState iceGatheringState)
 {
     _logger.Debug(TAG, $"IceGatheringState: {iceGatheringState}");
 }
 public static RTCIceGatheringState ToPlatformNative(this IceGatheringState nativePort) => (RTCIceGatheringState)nativePort;
Beispiel #5
0
 private void Connection_IceGatheringStateChanged(IceGatheringState newState)
 {
     Debug.LogWarning("IceGatheringStateChanged");
 }