addEvent(_:completionHandler:)
Adds a new event to the event trigger.
Declaration
func addEvent(_ event: HMEvent, completionHandler completion: @escaping @Sendable ((any Error)?) -> Void)func addEvent(_ event: HMEvent) async throwsParameters
- event:
An event to add to the event trigger.
- completion:
A block that executes after processing the request.
The block takes the following parameter:
- error
If the request was successful, the value of
errorisnil; otherwise, the value provides more information about the request status.