Class AcceptCallOptions
- Object
-
- CallOptions
-
- AcceptCallOptions
-
public final class AcceptCallOptions extends CallOptions
Options to be passed when accepting a call
-
-
Constructor Summary
Constructors Constructor Description AcceptCallOptions()Creates a new instance with a default configuration
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description VideoOptionsgetVideoOptions()Deprecated.Use getIncomingVideoOptions() and getOutgoingVideoOptions() insteadAcceptCallOptionssetIncomingAudioOptions(IncomingAudioOptions value)Incoming Audio options when joining or accepting a callAcceptCallOptionssetIncomingVideoOptions(IncomingVideoOptions value)Set or set the IncomingVideoOptions that should be taken in count once the call startAcceptCallOptionssetOutgoingAudioOptions(OutgoingAudioOptions value)Outgoing Audio options when joining or accepting a callAcceptCallOptionssetOutgoingVideoOptions(OutgoingVideoOptions value)Set or set the OutgoingVideoOptions that should be taken in count once the call startAcceptCallOptionssetVideoOptions(VideoOptions value)Deprecated.Use getIncomingVideoOptions() and getOutgoingVideoOptions() instead-
Methods inherited from class CallOptions
finalize, getIncomingAudioOptions, getIncomingVideoOptions, getOutgoingAudioOptions, getOutgoingVideoOptions
-
-
-
-
Method Detail
-
getVideoOptions
@Deprecated public VideoOptions getVideoOptions()
Deprecated.Use getIncomingVideoOptions() and getOutgoingVideoOptions() insteadVideo options. When both OutgoingVideoOptions and VideoOptions are specified both options will be merged.
-
setVideoOptions
@Deprecated public AcceptCallOptions setVideoOptions(VideoOptions value)
Deprecated.Use getIncomingVideoOptions() and getOutgoingVideoOptions() insteadVideo options. When both OutgoingVideoOptions and VideoOptions are specified both options will be merged.- Parameters:
value- The new value.
-
setIncomingVideoOptions
public AcceptCallOptions setIncomingVideoOptions(IncomingVideoOptions value)
Set or set the IncomingVideoOptions that should be taken in count once the call start- Overrides:
setIncomingVideoOptionsin classCallOptions- Parameters:
value- The new value.
-
setOutgoingVideoOptions
public AcceptCallOptions setOutgoingVideoOptions(OutgoingVideoOptions value)
Set or set the OutgoingVideoOptions that should be taken in count once the call start- Overrides:
setOutgoingVideoOptionsin classCallOptions- Parameters:
value- The new value.
-
setIncomingAudioOptions
public AcceptCallOptions setIncomingAudioOptions(IncomingAudioOptions value)
Incoming Audio options when joining or accepting a call- Overrides:
setIncomingAudioOptionsin classCallOptions- Parameters:
value- The new value.
-
setOutgoingAudioOptions
public AcceptCallOptions setOutgoingAudioOptions(OutgoingAudioOptions value)
Outgoing Audio options when joining or accepting a call- Overrides:
setOutgoingAudioOptionsin classCallOptions- Parameters:
value- The new value.
-
-