CreatePipelineAsyncStatus


class CreatePipelineAsyncStatus


Indicates the status of an asynchronous pipeline creation request.

Summary

Constants

const Int

Indicates the asynchronous pipeline creation was cancelled.

const Int

An internal error occurred during pipeline creation.

const Int

Pipeline creation was successful.

const Int

A validation error occurred during pipeline creation.

Public companion functions

String
toString(value: Int)

Constants

CallbackCancelled

const val CallbackCancelled = 2: Int

Indicates the asynchronous pipeline creation was cancelled. This happens if the device is lost or destroyed while the pipeline is being compiled.

InternalError

const val InternalError = 4: Int

An internal error occurred during pipeline creation.

Success

const val Success = 1: Int

Pipeline creation was successful.

ValidationError

const val ValidationError = 3: Int

A validation error occurred during pipeline creation.

Public companion functions

toString

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