Skip to content

Instantly share code, notes, and snippets.

@Abhi1code
Created April 11, 2020 09:43
Show Gist options
  • Save Abhi1code/62b0dc59c222712c5c16f009b9944742 to your computer and use it in GitHub Desktop.
Save Abhi1code/62b0dc59c222712c5c16f009b9944742 to your computer and use it in GitHub Desktop.
public void close(){
if(peerConnection == null){
return;
}
if(dataChannel == null){
peerConnection.close();
peerConnection = null;
} else {
dataChannel.close();
peerConnection.close();
peerConnection = null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment