Class CallOptions
- Object
-
- CallOptions
-
- Direct Known Subclasses:
AcceptCallOptions,AcceptTeamsCallOptions,JoinCallOptions,JoinTeamsCallOptions,StartCallOptions,StartTeamsCallOptions
public abstract class CallOptions extends ObjectHolds options for video and audio
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidfinalize()Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.IncomingAudioOptionsgetIncomingAudioOptions()Incoming Audio options when joining or accepting a callIncomingVideoOptionsgetIncomingVideoOptions()Set or set the IncomingVideoOptions that should be taken in count once the call startOutgoingAudioOptionsgetOutgoingAudioOptions()Outgoing Audio options when joining or accepting a callOutgoingVideoOptionsgetOutgoingVideoOptions()Set or set the OutgoingVideoOptions that should be taken in count once the call startCallOptionssetIncomingAudioOptions(IncomingAudioOptions value)Incoming Audio options when joining or accepting a callCallOptionssetIncomingVideoOptions(IncomingVideoOptions value)Set or set the IncomingVideoOptions that should be taken in count once the call startCallOptionssetOutgoingAudioOptions(OutgoingAudioOptions value)Outgoing Audio options when joining or accepting a callCallOptionssetOutgoingVideoOptions(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:
finalizein 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.
-
-