All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.cesium.RequestState.kt Maven / Gradle / Ivy

The newest version!
// Automatically generated - do not modify!

@file:JsModule("cesium")

package cesium

/**
 * State of the request.
 * @see Online Documentation
 */

external enum class RequestState {

    /**
     * Initial unissued state.
     */
    UNISSUED,

    /**
     * Issued but not yet active. Will become active when open slots are available.
     */
    ISSUED,

    /**
     * Actual http request has been sent.
     */
    ACTIVE,

    /**
     * Request completed successfully.
     */
    RECEIVED,

    /**
     * Request was cancelled, either explicitly or automatically because of low priority.
     */
    CANCELLED,

    /**
     * Request failed.
     */
    FAILED,

    ;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy