Contents

deleteSearchableItems(withIdentifiers:completionHandler:)

Removes from the index all items with the specified identifiers.

Declaration

func deleteSearchableItems(withIdentifiers identifiers: [String], completionHandler: (@Sendable ((any Error)?) -> Void)? = nil)
func deleteSearchableItems(withIdentifiers identifiers: [String]) async throws

Parameters

  • identifiers:

    An array of identifiers that specify the items to delete.

  • completionHandler:

    The block that’s called when the data has been journaled by the index, which means that the index makes a note that it has to perform this operation. If the completion handler returns an error, it means that the data wasn’t journaled correctly and the client should retry the request.

    The block receives the following parameter:

    error

    If an error occurred, this parameter holds an error object that explains the error. Otherwise, the value of this parameter is nil.

Discussion

The searchableIndex(_:reindexSearchableItemsWithIdentifiers:acknowledgementHandler:) protocol method is called in the case that the journaling completed successfully, but the data was not able to be indexed for some reason.

See Also

Managing items in an index