SyncOutcome

sealed interface SyncOutcome(source)

Inheritors

Types

Link copied to clipboard
data class Failed(val error: CloudError, val cause: Throwable) : SyncOutcome
Link copied to clipboard
data class Synced(val entryCount: Int) : SyncOutcome

entryCount is the number of non-marker entries present in the snapshot.

Link copied to clipboard
data class Unavailable(val reason: UnavailableReason) : SyncOutcome