@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.
30 lines (29 loc) • 879 B
TypeScript
/**
* Request status.
*/
export declare enum RequestStatus {
/**
* The request has been created but not sent to a Bloomberg service.
*/
Created = "CREATED",
/**
* The actual request has been sent to a Bloomberg service, but is not active yet. Response still not available.
*/
Opened = "OPENED",
/**
* The request has been sent to a Bloomberg service successfully. Responses may be received.
*/
Active = "ACTIVE",
/**
* The request has failed to open or an error is received from a Bloomberg service.
*/
Failed = "FAILED",
/**
* The request was closed before completing. No more responses will be received.
*/
Closed = "CLOSED",
/**
* The request was completed successfully. No more responses will be received.
*/
Completed = "COMPLETED"
}