@rushstack/operation-graph
Version:
Library for managing and executing operations in a directed acyclic graph.
39 lines • 935 B
TypeScript
/**
* Enumeration defining potential states of an operation
* @beta
*/
export declare enum OperationStatus {
/**
* The Operation is on the queue, ready to execute
*/
Ready = "READY",
/**
* The Operation is on the queue, waiting for one or more depencies
*/
Waiting = "WAITING",
/**
* The Operation is currently executing
*/
Executing = "EXECUTING",
/**
* The Operation completed successfully and did not write to standard output
*/
Success = "SUCCESS",
/**
* The Operation failed
*/
Failure = "FAILURE",
/**
* The operation was aborted
*/
Aborted = "ABORTED",
/**
* The Operation could not be executed because one or more of its dependencies failed
*/
Blocked = "BLOCKED",
/**
* The operation performed no meaningful work.
*/
NoOp = "NO OP"
}
//# sourceMappingURL=OperationStatus.d.ts.map