@glue42/bbg-market-data
Version:
A high-level API that wraps existing Glue42 Bloomberg Bridge Market Data interop methods. The API is based on the jBloomberg open source wrapper.
34 lines • 1.22 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RequestStatus = void 0;
/**
* Request status.
*/
var RequestStatus;
(function (RequestStatus) {
/**
* The request has been created but not sent to a Bloomberg service.
*/
RequestStatus["Created"] = "CREATED";
/**
* The actual request has been sent to a Bloomberg service, but is not active yet. Response still not available.
*/
RequestStatus["Opened"] = "OPENED";
/**
* The request has been sent to a Bloomberg service successfully. Responses may be received.
*/
RequestStatus["Active"] = "ACTIVE";
/**
* The request has failed to open or an error is received from a Bloomberg service.
*/
RequestStatus["Failed"] = "FAILED";
/**
* The request was closed before completing. No more responses will be received.
*/
RequestStatus["Closed"] = "CLOSED";
/**
* The request was completed successfully. No more responses will be received.
*/
RequestStatus["Completed"] = "COMPLETED";
})(RequestStatus = exports.RequestStatus || (exports.RequestStatus = {}));
//# sourceMappingURL=request-status.js.map