Class CallOptions
- Object
-
- CallOptions
-
- Direct Known Subclasses:
AcceptCallOptions
,AcceptTeamsCallOptions
,JoinCallOptions
,JoinTeamsCallOptions
,StartCallOptions
,StartTeamsCallOptions
public abstract class CallOptions extends Object
Holds options for video and audio
-
-
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.IncomingAudioOptions
getIncomingAudioOptions()
Incoming Audio options when joining or accepting a callIncomingVideoOptions
getIncomingVideoOptions()
Set or set the IncomingVideoOptions that should be taken in count once the call startOutgoingAudioOptions
getOutgoingAudioOptions()
Outgoing Audio options when joining or accepting a callOutgoingVideoOptions
getOutgoingVideoOptions()
Set or set the OutgoingVideoOptions that should be taken in count once the call startCallOptions
setIncomingAudioOptions(IncomingAudioOptions value)
Incoming Audio options when joining or accepting a callCallOptions
setIncomingVideoOptions(IncomingVideoOptions value)
Set or set the IncomingVideoOptions that should be taken in count once the call startCallOptions
setOutgoingAudioOptions(OutgoingAudioOptions value)
Outgoing Audio options when joining or accepting a callCallOptions
setOutgoingVideoOptions(OutgoingVideoOptions value)
Set or set the OutgoingVideoOptions that should be taken in count once the call start
-
-
-
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
-
getIncomingVideoOptions
public IncomingVideoOptions getIncomingVideoOptions()
Set or set the IncomingVideoOptions that should be taken in count once the call start
-
setIncomingVideoOptions
public CallOptions setIncomingVideoOptions(IncomingVideoOptions value)
Set or set the IncomingVideoOptions that should be taken in count once the call start- Parameters:
value
- The new value.
-
getOutgoingVideoOptions
public OutgoingVideoOptions getOutgoingVideoOptions()
Set or set the OutgoingVideoOptions that should be taken in count once the call start
-
setOutgoingVideoOptions
public CallOptions setOutgoingVideoOptions(OutgoingVideoOptions value)
Set or set the OutgoingVideoOptions that should be taken in count once the call start- Parameters:
value
- The new value.
-
getIncomingAudioOptions
public IncomingAudioOptions getIncomingAudioOptions()
Incoming Audio options when joining or accepting a call
-
setIncomingAudioOptions
public CallOptions setIncomingAudioOptions(IncomingAudioOptions value)
Incoming Audio options when joining or accepting a call- Parameters:
value
- The new value.
-
getOutgoingAudioOptions
public OutgoingAudioOptions getOutgoingAudioOptions()
Outgoing Audio options when joining or accepting a call
-
setOutgoingAudioOptions
public CallOptions setOutgoingAudioOptions(OutgoingAudioOptions value)
Outgoing Audio options when joining or accepting a call- Parameters:
value
- The new value.
-
-