DatasourceItemsProviderStatusDelegate

public protocol DatasourceItemsProviderStatusDelegate : AnyObject

This protocol represents a delegate object that provides status updates during the retrieval of items by a Datasourceable object.

  • This method should be calls when a Datasourceable object has updated its items.

    Declaration

    Swift

    func didUpdateItems<I>(with result: Result<I, Error>)

    Parameters

    result

    A Result object containing updated items.