org.webrtc.PeerConnection.SignalingState Java Examples
The following examples show how to use
org.webrtc.PeerConnection.SignalingState.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: WebRTCNativeMgr.java From appinventor-extensions with Apache License 2.0 | 4 votes |
public void onSignalingChange(SignalingState signalingState) { if (DEBUG) { Log.d(LOG_TAG, "onSignalingChange: signalingState = " + signalingState); } }
Example #2
Source File: Observer.java From webrtc-java with Apache License 2.0 | 4 votes |
@Override public synchronized void onSignalingChange(SignalingState newState) { System.out.println("DEBUG: SIGNAL CHANGE"); }
Example #3
Source File: LicodeConnector.java From licodeAndroidClient with MIT License | 4 votes |
@Override public void onSignalingChange(SignalingState arg0) { }