Class CallNetworkOptions
- Object
-
- CallNetworkOptions
-
public final class CallNetworkOptions extends Object
Network options for call client
-
-
Constructor Summary
Constructors Constructor Description CallNetworkOptions()
Creates a new instance with a default network options.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.List<IceServer>
getIceServers()
String
getProxyUrl()
Url to be used for proxy.CallNetworkOptions
setIceServers(List<IceServer> iceServers)
Set ICE servers used by the media proxy.CallNetworkOptions
setProxyUrl(String value)
Url to be used for proxy.
-
-
-
Method Detail
-
finalize
protected void finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.- Overrides:
finalize
in classObject
-
getProxyUrl
public String getProxyUrl()
Url to be used for proxy.
-
setProxyUrl
public CallNetworkOptions setProxyUrl(String value)
Url to be used for proxy.- Parameters:
value
- The new value.
-
getIceServers
public List<IceServer> getIceServers()
-
setIceServers
public CallNetworkOptions setIceServers(List<IceServer> iceServers)
Set ICE servers used by the media proxy.- Parameters:
iceServers
- list of ICE servers provided
-
-