raas-client
Version:
70 lines • 2.18 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Constants representing the state of the server itself or the state of publishing to the server
*/
var ServerState;
(function (ServerState) {
/**
* Server state constant (value 0) indicating that the
* server is in an unknown state.
*/
ServerState.UNKNOWN = 0;
/**
* Server state constant (value 1) indicating that the
* server is starting, but not yet ready to serve content.
*/
ServerState.STARTING = 1;
/**
* Server state constant (value 2) indicating that the
* server is ready to serve content.
*/
ServerState.STARTED = 2;
/**
* Server state constant (value 3) indicating that the
* server is shutting down.
*/
ServerState.STOPPING = 3;
/**
* Server state constant (value 4) indicating that the
* server is stopped.
*/
ServerState.STOPPED = 4;
/**
* Publish state constant (value 0) indicating that it's
* in an unknown state.
*/
ServerState.PUBLISH_STATE_UNKNOWN = 0;
/**
* Publish state constant (value 1) indicating that there
* is no publish required.
*/
ServerState.PUBLISH_STATE_NONE = 1;
/**
* Publish state constant (value 2) indicating that an
* incremental publish is required.
*/
ServerState.PUBLISH_STATE_INCREMENTAL = 2;
/**
* Publish state constant (value 3) indicating that a
* full publish is required.
*/
ServerState.PUBLISH_STATE_FULL = 3;
/**
* Publish kind constant (value 1) indicating an incremental publish request.
*/
ServerState.PUBLISH_INCREMENTAL = 1;
/**
* Publish kind constant (value 2) indicating a full publish request.
*/
ServerState.PUBLISH_FULL = 2;
/**
* Publish kind constant (value 3) indicating an automatic publish request.
*/
ServerState.PUBLISH_AUTO = 3;
/**
* Publish kind constant (value 4) indicating a publish clean request
*/
ServerState.PUBLISH_CLEAN = 4;
})(ServerState = exports.ServerState || (exports.ServerState = {}));
//# sourceMappingURL=serverState.js.map