QueueWorkDoneStatus


class QueueWorkDoneStatus


Indicates the status of a queue work done callback.

Summary

Constants

const Int

Indicates the work done notification was cancelled.

const Int
Error = 3

A deterministic error occurred.

const Int

The work was completed successfully.

Public companion functions

String
toString(value: Int)

Constants

CallbackCancelled

const val CallbackCancelled = 2: Int

Indicates the work done notification was cancelled. This occurs if the device is lost or the queue is destroyed before the submitted work finishes.

Error

const val Error = 3: Int

A deterministic error occurred.

Success

const val Success = 1: Int

The work was completed successfully.

Public companion functions

toString

Added in 1.0.0-alpha05
fun toString(value: Int): String