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 VideoOptions
getVideoOptions()
Deprecated.Use getIncomingVideoOptions() and getOutgoingVideoOptions() insteadAcceptCallOptions
setIncomingAudioOptions(IncomingAudioOptions value)
Incoming Audio options when joining or accepting a callAcceptCallOptions
setIncomingVideoOptions(IncomingVideoOptions value)
Set or set the IncomingVideoOptions that should be taken in count once the call startAcceptCallOptions
setOutgoingAudioOptions(OutgoingAudioOptions value)
Outgoing Audio options when joining or accepting a callAcceptCallOptions
setOutgoingVideoOptions(OutgoingVideoOptions value)
Set or set the OutgoingVideoOptions that should be taken in count once the call startAcceptCallOptions
setVideoOptions(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:
setIncomingVideoOptions
in 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:
setOutgoingVideoOptions
in classCallOptions
- Parameters:
value
- The new value.
-
setIncomingAudioOptions
public AcceptCallOptions setIncomingAudioOptions(IncomingAudioOptions value)
Incoming Audio options when joining or accepting a call- Overrides:
setIncomingAudioOptions
in classCallOptions
- Parameters:
value
- The new value.
-
setOutgoingAudioOptions
public AcceptCallOptions setOutgoingAudioOptions(OutgoingAudioOptions value)
Outgoing Audio options when joining or accepting a call- Overrides:
setOutgoingAudioOptions
in classCallOptions
- Parameters:
value
- The new value.
-
-