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 AudioOptionsgetAudioOptions()Deprecated.Use getIncomingAudioOptions() and getOutgoingAudioOptions() instead.VideoOptionsgetVideoOptions()Deprecated.Use getIncomingVideoOptions() and getOutgoingVideoOptions() insteadJoinCallOptionssetAudioOptions(AudioOptions value)Deprecated.Use getIncomingAudioOptions() and getOutgoingAudioOptions() instead.JoinCallOptionssetIncomingAudioOptions(IncomingAudioOptions value)Incoming Audio options when joining or accepting a callJoinCallOptionssetIncomingVideoOptions(IncomingVideoOptions value)Set or set the IncomingVideoOptions that should be taken in count once the call startJoinCallOptionssetOutgoingAudioOptions(OutgoingAudioOptions value)Outgoing Audio options when joining or accepting a callJoinCallOptionssetOutgoingVideoOptions(OutgoingVideoOptions value)Set or set the OutgoingVideoOptions that should be taken in count once the call startJoinCallOptionssetVideoOptions(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:
setIncomingVideoOptionsin 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:
setOutgoingVideoOptionsin classCallOptions- Parameters:
value- The new value.
-
setIncomingAudioOptions
public JoinCallOptions setIncomingAudioOptions(IncomingAudioOptions value)
Incoming Audio options when joining or accepting a call- Overrides:
setIncomingAudioOptionsin classCallOptions- Parameters:
value- The new value.
-
setOutgoingAudioOptions
public JoinCallOptions setOutgoingAudioOptions(OutgoingAudioOptions value)
Outgoing Audio options when joining or accepting a call- Overrides:
setOutgoingAudioOptionsin classCallOptions- Parameters:
value- The new value.
-
-