ZyncUploadState

sealed class ZyncUploadState

Represents the current state of the upload system.

Inheritors

Types

Link copied to clipboard
data class Completed(val pendingUploadCount: Int) : ZyncUploadState

Upload process completed.

Link copied to clipboard
data class Error(val pendingUploadCount: Int) : ZyncUploadState

Upload process encountered an error.

Link copied to clipboard
data class Idle(val pendingUploadCount: Int) : ZyncUploadState

Upload system is idle - no operations to upload or not started.

Link copied to clipboard
data class NetworkError(val pendingUploadCount: Int) : ZyncUploadState

Upload process encountered a network error.

Link copied to clipboard
data class Uploading(val pendingUploadCount: Int) : ZyncUploadState

Currently uploading operations.

Link copied to clipboard
data class WaitingForNetwork(val pendingUploadCount: Int) : ZyncUploadState

Waiting for network connectivity to resume uploads.