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 TypeMethodDescriptionvoid
onFailedToRequestSendQuery
(boolean bTimeout) Notification that the request to send query failed.void
onFailedToStartQuery
(boolean bTimeout) Notification that the query failed to start.void
Notify receive query enable action callback.void
Notification that the query setting is changed.void
Notification that the query is not started.void
Notification that the meeting does not support meeting query.void
Notification that the query is started.void
Notification that the meting support query but query feature is disabled.void
onReceiveQueryAnswer
(ZoomSDKAICompanionQueryItem queryItem) Notify receive query answer.void
Notify receive request to enable query.void
Notification of receiving request to start query.void
Notification of receiving request to start query.void
onSendQueryPrivilegeChanged
(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.
-