Contents

handle(intent:completion:)

Handles changing the defroster settings.

Declaration

func handle(intent: INSetDefrosterSettingsInCarIntent, completion: @escaping  @Sendable (INSetDefrosterSettingsInCarIntentResponse) -> Void)
func handle(intent: INSetDefrosterSettingsInCarIntent) async -> INSetDefrosterSettingsInCarIntentResponse

Parameters

  • intent:

    The intent object containing details about the user’s request. Your handler object has already resolved the information in this 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 Insetdefrostersettingsincarintentresponse object you create to report the status of the request. This parameter must not be nil.

Discussion

Your implementation of this method should communicate the new defroster settings to the vehicle’s climate control system. When done, execute the provided block with a response object indicating whether you successfully changed the defroster settings.