/* * Copyright (C)2005-2019 Haxe Foundation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ // This file is generated from mozilla\RTCPeerConnection.webidl. Do not edit! package js.html.rtc; import js.lib.Promise; /** The `RTCPeerConnection` interface represents a WebRTC connection between the local computer and a remote peer. It provides methods to connect to a remote peer, maintain and monitor the connection, and close the connection once it's no longer needed. Documentation [RTCPeerConnection](https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection) by [Mozilla Contributors](https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection$history), licensed under [CC-BY-SA 2.5](https://creativecommons.org/licenses/by-sa/2.5/). @see **/ @:native("RTCPeerConnection") extern class PeerConnection extends js.html.EventTarget { /** @throws DOMError */ @:overload( function( keygenAlgorithm : String) : Promise {} ) static function generateCertificate( keygenAlgorithm : Dynamic ) : Promise; var localDescription(default,null) : SessionDescription; var currentLocalDescription(default,null) : SessionDescription; var pendingLocalDescription(default,null) : SessionDescription; var remoteDescription(default,null) : SessionDescription; var currentRemoteDescription(default,null) : SessionDescription; var pendingRemoteDescription(default,null) : SessionDescription; var signalingState(default,null) : SignalingState; var canTrickleIceCandidates(default,null) : Bool; var iceGatheringState(default,null) : IceGatheringState; var iceConnectionState(default,null) : IceConnectionState; var peerIdentity(default,null) : Promise; var idpLoginUrl(default,null) : String; var onnegotiationneeded : haxe.Constraints.Function; var onicecandidate : haxe.Constraints.Function; var onsignalingstatechange : haxe.Constraints.Function; var onaddstream : haxe.Constraints.Function; var onaddtrack : haxe.Constraints.Function; var ontrack : haxe.Constraints.Function; var onremovestream : haxe.Constraints.Function; var oniceconnectionstatechange : haxe.Constraints.Function; var onicegatheringstatechange : haxe.Constraints.Function; var ondatachannel : haxe.Constraints.Function; /** @throws DOMError */ function new( ?configuration : Configuration, ?constraints : Dynamic ) : Void; function setIdentityProvider( provider : String, ?options : IdentityProviderOptions ) : Void; function getIdentityAssertion() : Promise; @:overload( function( ?options : OfferOptions ) : Promise {} ) function createOffer( successCallback : SessionDescriptionInit -> Void, failureCallback : js.html.DOMException -> Void, ?options : OfferOptions ) : Promise; @:overload( function( ?options : AnswerOptions ) : Promise {} ) function createAnswer( successCallback : SessionDescriptionInit -> Void, failureCallback : js.html.DOMException -> Void ) : Promise; @:overload( function( description : SessionDescriptionInit ) : Promise {} ) function setLocalDescription( description : SessionDescriptionInit, successCallback : Void -> Void, failureCallback : js.html.DOMException -> Void ) : Promise; @:overload( function( description : SessionDescriptionInit ) : Promise {} ) function setRemoteDescription( description : SessionDescriptionInit, successCallback : Void -> Void, failureCallback : js.html.DOMException -> Void ) : Promise; @:overload( function( candidate : IceCandidate) : Promise {} ) @:overload( function( candidate : IceCandidateInit ) : Promise {} ) function addIceCandidate( candidate : IceCandidate, successCallback : Void -> Void, failureCallback : js.html.DOMException -> Void ) : Promise; function getConfiguration() : Configuration; function getLocalStreams() : Array; function getRemoteStreams() : Array; function addStream( stream : js.html.MediaStream ) : Void; function addTrack( track : js.html.MediaStreamTrack, stream : js.html.MediaStream, moreStreams : haxe.extern.Rest ) : RtpSender; function removeTrack( sender : RtpSender ) : Void; @:overload( function( trackOrKind : String, ?init : RtpTransceiverInit) : RtpTransceiver {} ) function addTransceiver( trackOrKind : js.html.MediaStreamTrack, ?init : RtpTransceiverInit ) : RtpTransceiver; function getSenders() : Array; function getReceivers() : Array; function getTransceivers() : Array; function close() : Void; @:overload( function( ?selector : js.html.MediaStreamTrack ) : Promise {} ) function getStats( selector : js.html.MediaStreamTrack, successCallback : StatsReport -> Void, failureCallback : js.html.DOMException -> Void ) : Promise; function createDataChannel( label : String, ?dataChannelDict : DataChannelInit ) : DataChannel; }