Hrishikesh S

Results 2 comments of Hrishikesh S

Hi, I'm facing the same issue. I have a choice between doing ``` try { this.myTask.perform(); } catch(e) { ... } ``` versus ``` this.myTask.perform().catch() ``` is there any reason...

I have completely replaced `ember-concurrency` usage with async/await and am manually managing state with respect to `isPending` , etc.. I realized that I was not using task cancelation much in...