AudioOptions Class

  • java.lang.Object
    • com.azure.android.communication.calling.AudioOptions

public class AudioOptions

Property bag class for Audio Options. Use this class to set audio settings required during a call (start/join)

Constructor Summary

Constructor Description
AudioOptions()

Creates a new instance with a default configuration

Method Summary

Modifier and Type Method and Description
void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

boolean isMuted()

Start an outgoing or accept incoming call muted (true) or un-muted(false)

AudioOptions setMuted(boolean value)

Start an outgoing or accept incoming call muted (true) or un-muted(false)

Constructor Details

AudioOptions

public AudioOptions()

Creates a new instance with a default configuration

Method Details

finalize

protected void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

isMuted

public boolean isMuted()

Start an outgoing or accept incoming call muted (true) or un-muted(false)

setMuted

public AudioOptions setMuted(boolean value)

Start an outgoing or accept incoming call muted (true) or un-muted(false)

Parameters:

value - The new value.

Applies to