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 called when a
Datasourceableobject has updated its items.Declaration
Swift
func didUpdateItems<I>(with result: Result<I, Error>)Parameters
resultA Result object containing updated items.
View on GitHub