ResetType

public enum ResetType

The type of reset to perform with a call to reset.

  • Resets only persistent data that tracks uploads and downloads in the SyncServer. Makes no server calls. This should not be required, but sometimes is useful due to bugs or crashes in the SyncServer and could be required.

    Declaration

    Swift

    case tracking
  • all

    A powerful operation. Permanently removes all local/cached metadata known by the client interface. E.g., metadata about files that you have previously uploaded. It makes no server calls. This is similar to deleting and re-installing the app– except that it does not delete the files referenced by the meta data. You must keep track of files and, if desired, delete them.

    Declaration

    Swift

    case all