Protocols

The following protocols are available globally.

  • Protocol for receiving database change status events

    See more

    Declaration

    Swift

    public protocol DatabaseChangeDelegate: class
  • Protocol for AuthorizationHandlers.

    Authorization handlers provide specific authorization (post-authentication) capabilities for the AuthenticationManager

    Classes that implement this protocol handle authorization, by exchanging authentication tokens for authorized user information.

    See more

    Declaration

    Swift

    public protocol AuthorizationHandler: class
  • Protocol used by Logger class for logging operations.

    See more

    Declaration

    Swift

    public protocol LogWriter
  • Creates a Database index used to then query the database

    See more

    Declaration

    Swift

    public protocol Indexer
  • Delegate protocol for UI interactions with Authentication handlers.

    Some authentication handlers may interact with the UI. These delegate methods will be called when those handlers are about to interact with the UI, or have finished with the UI.

    See more

    Declaration

    Swift

    public protocol AuthenticationHandlerUIDelegate: class
  • Authentication handlers that rely on external components that may fail, such as network requests, will support this delegate to pass information about those failures to the user.

    See more

    Declaration

    Swift

    public protocol FailableAuthenticationHandlerDelegate: class
  • Authentication handlers that rely on external user interaction to provide authentication credentials will support this delegate to gather the user’s credentials, and alert the user if those credentials are not valid.

    See more

    Declaration

    Swift

    public protocol ProvideCredentialsAuthenticationHandlerDelegate: class
  • Authentication handlers that rely on calling an a web-based oAuth2 authentication flow to gather and validate authentication credentials will support this delegate to support display of the authentication web page, detecting the oAuth2 redirectURI and handling errors.

    See more

    Declaration

    Swift

    public protocol BrowserBasedAuthenticationHandlerDelegate: FailableAuthenticationHandlerDelegate
  • Protocol defining a document attachment, used to associate a binary payload to a Document

    See more

    Declaration

    Swift

    public protocol Attachment
  • Protocol for Reachability when determining device connectivity status

    See more

    Declaration

    Swift

    public protocol QueryConnectivity