@Generated(value="org.realityforge.webtack")
@JsType(isNative=true,
namespace="<global>",
name="Object")
public interface RTCIceCandidatePair
| Modifier and Type | Interface and Description |
|---|---|
static interface |
RTCIceCandidatePair.Builder
The RTCIceCandidatePair dictionary describes a pair of ICE candidates which together comprise a description of a viable connection between two WebRTC endpoints.
|
| Modifier and Type | Method and Description |
|---|---|
static RTCIceCandidatePair.Builder |
create() |
RTCIceCandidate |
local()
The local property of the RTCIceCandidatePair dictionary specifies the RTCIceCandidate which describes the configuration of the local end of a viable WebRTC connection.
|
RTCIceCandidate |
remote()
The remote property of the RTCIceCandidatePair dictionary specifies the RTCIceCandidate describing the configuration of the remote end of a viable WebRTC connection.
|
void |
setLocal(RTCIceCandidate local)
The local property of the RTCIceCandidatePair dictionary specifies the RTCIceCandidate which describes the configuration of the local end of a viable WebRTC connection.
|
void |
setRemote(RTCIceCandidate remote)
The remote property of the RTCIceCandidatePair dictionary specifies the RTCIceCandidate describing the configuration of the remote end of a viable WebRTC connection.
|
@JsOverlay @Nonnull static RTCIceCandidatePair.Builder create()
@JsProperty(name="local") RTCIceCandidate local()
@JsProperty
void setLocal(@Nonnull
RTCIceCandidate local)
@JsProperty(name="remote") RTCIceCandidate remote()
@JsProperty
void setRemote(@Nonnull
RTCIceCandidate remote)