RequestAdapterStatus


class RequestAdapterStatus


Indicates the status of an adapter request.

Summary

Constants

const Int

Indicates the adapter request was cancelled.

const Int
Error = 4

An error occurred during the adapter request.

const Int

An adapter was successfully found.

const Int

No suitable adapter was found.

Public companion functions

String
toString(value: Int)

Constants

CallbackCancelled

const val CallbackCancelled = 2: Int

Indicates the adapter request was cancelled. This happens if the instance is destroyed or the request is explicitly aborted before an adapter is found.

Error

const val Error = 4: Int

An error occurred during the adapter request.

Success

const val Success = 1: Int

An adapter was successfully found.

Unavailable

const val Unavailable = 3: Int

No suitable adapter was found.

Public companion functions

toString

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