We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ProcessPromise
We use several private fields to describe the process stage, but we'd like introduce explicit state machine contract
Expose this
_halted _piped _output // which means that is fulfilled
via smth like
type ProcessStage = 'halted' | 'pending' | 'fulfilled' | 'rejected' stage(): ProcessStage { if (this._halted) { return ... } // ... }
The text was updated successfully, but these errors were encountered:
I'm ready to implement
Sorry, something went wrong.
@antongolub, is it supposed to get state from the outside? And a few more question:
_run
fullfilled
isHulted
#run
private _output
easymikey
No branches or pull requests
We use several private fields to describe the process stage, but we'd like introduce explicit state machine contract
Expose this
via smth like
The text was updated successfully, but these errors were encountered: