handle(intent:completion:)
Performs the search and deliver the results to SiriKit.
Declaration
func handle(intent: INSearchForNotebookItemsIntent, completion: @escaping @Sendable (INSearchForNotebookItemsIntentResponse) -> Void)func handle(intent: INSearchForNotebookItemsIntent) async -> INSearchForNotebookItemsIntentResponseParameters
- intent:
The intent object containing details about the user’s request. The information in this object has already been resolved and confirmed by your handler object.
- completion:
The handler block to execute with your response. You must execute this handler at some point during your implementation of this method. This handler has no return value and takes the following parameter:
- response
The Insearchfornotebookitemsintentresponse object containing the search results. This parameter must not be
nil.
Discussion
In your implementation of this method, perform the search based on the available criteria, create a response object with the results, and call the provided completion handler.