Status codes for the Cast APIs.
Status codes for the Cast API that are
returned in various callbacks as error parameter values.
| int | APPLICATION_NOT_FOUND | Status code indicating that a requested application could not be found. |
| int | APPLICATION_NOT_RUNNING | Status code indicating that a requested application is not currently running. |
| int | AUTHENTICATION_FAILED | Status code indicating an authentication failure. |
| int | CANCELED | Status code indicating that an in-progress request has been canceled, most likely because another action has preempted it. |
| int | DEVICE_CONNECTION_SUSPENDED | Status code indicating that the device connection is suspended and is not able to complete a request. |
| int | ERROR_SERVICE_CREATION_FAILED | The Cast Remote Display service could not be created. |
| int | ERROR_SERVICE_DISCONNECTED | The Cast Remote Display service was disconnected. |
| int | ERROR_STOPPING_SERVICE_FAILED | The Cast Remote Display service could not be stopped. |
| int | FAILED | Status code indicating that the in-progress request failed. |
| int | INTERNAL_ERROR | Status code indicating that an internal error has occurred. |
| int | INTERRUPTED | Status code indicating a blocking call was interrupted while waiting and did not run to completion. |
| int | INVALID_REQUEST | Status code indicating that an invalid request was made. |
| int | MEDIA_ERROR | Status code indicating other generic errors for the media request. |
| int | MESSAGE_SEND_BUFFER_TOO_FULL | Status code indicating that a message could not be sent because there is not enough room in the send buffer at this time. |
| int | MESSAGE_TOO_LARGE | Status code indicating that a message could not be sent because it is too large. |
| int | NETWORK_ERROR | Status code indicating a network I/O error. |
| int | NOT_ALLOWED | Status code indicating that the request was disallowed and could not be completed. |
| int | REPLACED | Status code indicating that the request's progress is no longer being tracked because another request of the same type has been made before the first request completed. |
| int | SUCCESS | Status code indicating no error (success). |
| int | TIMEOUT | Status code indicating that an operation has timed out. |
| int | UNKNOWN_ERROR | Status code indicating that an unknown, unexpected error has occurred. |
| static String |
getStatusCodeString(int statusCode)
Returns an untranslated debug (not user-friendly!) string based on the current
status code.
|
Status code indicating that a requested application could not be found.
Status code indicating that a requested application is not currently running.
Status code indicating an authentication failure.
Status code indicating that an in-progress request has been canceled, most likely because another action has preempted it.
Status code indicating that the device connection is suspended and is not able to
complete a request. The Cast ApiClient will soon be suspended and
GoogleApiClient.ConnectionCallbacks#onConnectionSuspended(int) will be
called to notify about the suspension.
The Cast Remote Display service could not be created.
The Cast Remote Display service was disconnected.
The Cast Remote Display service could not be stopped.
Status code indicating that the in-progress request failed.
Status code indicating that an internal error has occurred.
Status code indicating a blocking call was interrupted while waiting and did not run to completion.
Status code indicating that an invalid request was made.
Status code indicating other generic errors for the media request.
Status code indicating that a message could not be sent because there is not enough room in the send buffer at this time.
Status code indicating that a message could not be sent because it is too large.
Status code indicating a network I/O error.
Status code indicating that the request was disallowed and could not be completed.
Status code indicating that the request's progress is no longer being tracked because another request of the same type has been made before the first request completed.
Status code indicating no error (success).
Status code indicating that an operation has timed out.
Status code indicating that an unknown, unexpected error has occurred.
Returns an untranslated debug (not user-friendly!) string based on the current status code.