Promise in BrightScript
Implement promise in BrightScript
' methods
'promise_resolve
'promise_reject
'promise_All ' Fulfills when all of the promises fulfill; rejects when any of the promises rejects.
'promise_AllSettled ' Fulfills when all promises settle.
'promise_race ' Settles when any of the promises settles. In other words, fulfills when any of the promises fulfills; rejects when any of the promises rejects.
'promise_any ' Fulfills when any of the promises fulfills; rejects when all of the promises reject.
'promise_finally