CatalogFetchDelegate

public protocol CatalogFetchDelegate : AnyObject

Notified of catalog fetch results

  • Called when the Catalog was fetched successfully

    Declaration

    Swift

    func catalogFetchDidSucceedWith(_ result: Catalog)
  • Called when there was an error fetching the catalog

    • error: The Error representing the reason for failure. No specific errors to look for here. Best course of action is to just display a generic error message.

    Declaration

    Swift

    func catalogFetchDidFailWith(_ error: Error)