Interface ConferenceDtmfOptions
public interface ConferenceDtmfOptions
Options to control how DTMF signals are used by the participant in the conference. For
information on how to use this feature, read more here.
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Dedicated Builderstatic class
Determines what DTMF mode the participant will use in the call. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Getting builderThe maximum number of accepted digits before sending the collected input via a PIE callback.getMode()
Determines what DTMF mode the participant will use in the call.The number of milliseconds that the system will wait between entered digits before triggering the PIE callback.
-
Method Details
-
getMode
ConferenceDtmfOptions.ModeEnum getMode()Determines what DTMF mode the participant will use in the call.- Returns:
- mode
-
getMaxDigits
Integer getMaxDigits()The maximum number of accepted digits before sending the collected input via a PIE callback. The default value is1
. If the value is greater than1
, the PIE callback is triggered by one of the three following events: - No additional digit is entered before thetimeoutMills
timeout period has elapsed. - The#
character is entered. - The maximum number of digits has been entered.- Returns:
- maxDigits
-
getTimeoutMills
Integer getTimeoutMills()The number of milliseconds that the system will wait between entered digits before triggering the PIE callback. The default value is3000
.- Returns:
- timeoutMills
-
builder
Getting builder- Returns:
- New Builder instance
-