org.webrtc.PeerConnection.IceGatheringState Java Examples
The following examples show how to use
org.webrtc.PeerConnection.IceGatheringState.
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: Observer.java From webrtc-java with Apache License 2.0 | 5 votes |
@Override public synchronized void onIceGatheringChange(IceGatheringState newState) { //System.out.println("DEBUG: ICE Gathering state " + newState); if (newState == IceGatheringState.GATHERING) { return; } }
Example #2
Source File: WebRTCNativeMgr.java From appinventor-extensions with Apache License 2.0 | 4 votes |
public void onIceGatheringChange(IceGatheringState iceGatheringState) { if (DEBUG) { Log.d(LOG_TAG, "onIceGatheringChange: iceGatheringState = " + iceGatheringState); } }
Example #3
Source File: LicodeConnector.java From licodeAndroidClient with MIT License | 4 votes |
@Override public void onIceGatheringChange(IceGatheringState iceGatherState) { if (iceGatherState == IceGatheringState.COMPLETE) { mSdpObserver.iceReady(); } }