Class JoinCallOptions
- Object
-
- CallOptions
-
- JoinCallOptions
-
public final class JoinCallOptions extends CallOptions
Options to be passed when joining a call
-
-
Constructor Summary
Constructors Constructor Description JoinCallOptions()
Default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description AudioOptions
getAudioOptions()
Deprecated.Use getIncomingAudioOptions() and getOutgoingAudioOptions() instead.VideoOptions
getVideoOptions()
Deprecated.Use getIncomingVideoOptions() and getOutgoingVideoOptions() insteadJoinCallOptions
setAudioOptions(AudioOptions value)
Deprecated.Use getIncomingAudioOptions() and getOutgoingAudioOptions() instead.JoinCallOptions
setIncomingAudioOptions(IncomingAudioOptions value)
Incoming Audio options when joining or accepting a callJoinCallOptions
setIncomingVideoOptions(IncomingVideoOptions value)
Set or set the IncomingVideoOptions that should be taken in count once the call startJoinCallOptions
setOutgoingAudioOptions(OutgoingAudioOptions value)
Outgoing Audio options when joining or accepting a callJoinCallOptions
setOutgoingVideoOptions(OutgoingVideoOptions value)
Set or set the OutgoingVideoOptions that should be taken in count once the call startJoinCallOptions
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 JoinCallOptions 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.
-
getAudioOptions
@Deprecated public AudioOptions getAudioOptions()
Deprecated.Use getIncomingAudioOptions() and getOutgoingAudioOptions() instead.Audio options when joining a call
-
setAudioOptions
@Deprecated public JoinCallOptions setAudioOptions(AudioOptions value)
Deprecated.Use getIncomingAudioOptions() and getOutgoingAudioOptions() instead.Audio options when joining a call- Parameters:
value
- The new value.
-
setIncomingVideoOptions
public JoinCallOptions 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 JoinCallOptions 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 JoinCallOptions setIncomingAudioOptions(IncomingAudioOptions value)
Incoming Audio options when joining or accepting a call- Overrides:
setIncomingAudioOptions
in classCallOptions
- Parameters:
value
- The new value.
-
setOutgoingAudioOptions
public JoinCallOptions setOutgoingAudioOptions(OutgoingAudioOptions value)
Outgoing Audio options when joining or accepting a call- Overrides:
setOutgoingAudioOptions
in classCallOptions
- Parameters:
value
- The new value.
-
-