JoinCallOptions Class

  • java.lang.Object
    • CallOptions
      • com.azure.android.communication.calling.JoinCallOptions

public class JoinCallOptions extends CallOptions

Options to be passed when joining a call

Constructor Summary

Constructor Description
JoinCallOptions()

Creates a new instance with a default configuration

Method Summary

Modifier and Type Method and Description
AudioOptions getAudioOptions()

Audio options when joining a call

VideoOptions getVideoOptions()

Video options when joining a call. When both OutgoingVideoOptions and VideoOptions are specified both options will be merged.

JoinCallOptions setAudioOptions(AudioOptions value)

Audio options when joining a call

JoinCallOptions setIncomingAudioOptions(IncomingAudioOptions value)

Incoming Audio options when accepting a call

JoinCallOptions setIncomingVideoOptions(IncomingVideoOptions value)

Set or set the IncomingVideoOptions that should be taken in count once the call start

JoinCallOptions setOutgoingAudioOptions(OutgoingAudioOptions value)

Outgoing Audio options when accepting a call

JoinCallOptions setOutgoingVideoOptions(OutgoingVideoOptions value)

Set or set the OutgoingVideoOptions that should be taken in count once the call start

JoinCallOptions setVideoOptions(VideoOptions value)

Video options when joining a call. When both OutgoingVideoOptions and VideoOptions are specified both options will be merged.

Inherited Members

Constructor Details

JoinCallOptions

public JoinCallOptions()

Creates a new instance with a default configuration

Method Details

getAudioOptions

public AudioOptions getAudioOptions()

Audio options when joining a call

getVideoOptions

public VideoOptions getVideoOptions()

Video options when joining a call. When both OutgoingVideoOptions and VideoOptions are specified both options will be merged.

setAudioOptions

public JoinCallOptions setAudioOptions(AudioOptions value)

Audio options when joining a call

Parameters:

value - The new value.

setIncomingAudioOptions

public JoinCallOptions setIncomingAudioOptions(IncomingAudioOptions value)

Incoming Audio options when accepting 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

Parameters:

value - The new value.

setOutgoingAudioOptions

public JoinCallOptions setOutgoingAudioOptions(OutgoingAudioOptions value)

Outgoing Audio options when accepting a call

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

Parameters:

value - The new value.

setVideoOptions

public JoinCallOptions setVideoOptions(VideoOptions value)

Video options when joining a call. When both OutgoingVideoOptions and VideoOptions are specified both options will be merged.

Parameters:

value - The new value.

Applies to