Package us.zoom.sdk
Interface ZoomSDKAICompanionQueryListener
- All Superinterfaces:
us.zoom.core.interfaces.IListener
public interface ZoomSDKAICompanionQueryListener
extends us.zoom.core.interfaces.IListener
-
Method Summary
Modifier and TypeMethodDescriptionvoidonFailedToRequestSendQuery(boolean bTimeout) Notification that the request to send query failed.voidonFailedToStartQuery(boolean bTimeout) Notification that the query failed to start.voidNotify receive query enable action callback.voidNotification that the query setting is changed.voidNotification that the query is not started.voidNotification that the meeting does not support meeting query.voidNotification that the query is started.voidNotification that the meting support query but query feature is disabled.voidonReceiveQueryAnswer(ZoomSDKAICompanionQueryItem queryItem) Notify receive query answer.voidNotify receive request to enable query.voidNotification of receiving request to start query.voidNotification of receiving request to start query.voidonSendQueryPrivilegeChanged(boolean canSendQuery) Notification of got or loss send query question privilege.
-
Method Details
-
onQueryStateNotSupported
void onQueryStateNotSupported()Notification that the meeting does not support meeting query. -
onQueryStateSupportedButDisabled
Notification that the meting support query but query feature is disabled.- Parameters:
handler- The handler to enable query.
-
onQueryStateEnabledButNotStarted
Notification that the query is not started.- Parameters:
handler- The handler to start the query.ZoomSDKStartQueryHandler
-
onQueryStateStarted
Notification that the query is started.- Parameters:
handler- The handler to send the query.ZoomSDKSendQueryHandler
-
onQuerySettingChanged
Notification that the query setting is changed.- Parameters:
setting- The selected query setting.ZoomSDKAICompanionQuerySettingOptions
-
onFailedToStartQuery
void onFailedToStartQuery(boolean bTimeout) Notification that the query failed to start.- Parameters:
bTimeout- true means is timeout. false means the user declines the request.
-
onReceiveRequestToEnableQuery
Notify receive request to enable query.- Parameters:
handler- The handler to handle request.
-
onReceiveRequestToStartQuery
Notification of receiving request to start query.- Parameters:
handler- The handler to handle the request.ZoomSDKApproveQueryHandler
-
onQueryEnableActionCallback
Notify receive query enable action callback.- Parameters:
handler- The handler to enable query.
-
onReceiveQueryAnswer
Notify receive query answer.- Parameters:
queryItem- The obect ofZoomSDKAICompanionQueryItem.
-
onSendQueryPrivilegeChanged
void onSendQueryPrivilegeChanged(boolean canSendQuery) Notification of got or loss send query question privilege.- Parameters:
canSendQuery- true means can send. Otherwise not.
-
onFailedToRequestSendQuery
void onFailedToRequestSendQuery(boolean bTimeout) Notification that the request to send query failed.- Parameters:
bTimeout- true means that the request timed out. false means the user declines the request.
-
onReceiveRequestToSendQuery
Notification of receiving request to start query.- Parameters:
handler- The handler to handle the request.
-