kin-android / org.kin.sdk.base.tools / NetworkOperation / State
sealed class State
Name | Summary |
---|---|
COMPLETED | Operation has completedobject COMPLETED : State |
ERRORED | Operation has been run and has run into an errordata class ERRORED : State |
INIT | Recently created, not yet queued or scheduledobject INIT : State |
QUEUED | Operation has been added to the activeOperations list and is awaiting scheduling.object QUEUED : State |
RUNNING | Operation has been run and is in-flightobject RUNNING : State |
SCHEDULED | Operation has been scheduled to execute at a certain executionTimestamp. There should exist a ScheduledFuture associated with this operation’s schedulingdata class SCHEDULED : State |