ember-concurrency
ember-concurrency copied to clipboard
ember-concurrency is an Ember Addon that enables you to write concise, worry-free, cancelable, restartable, asynchronous tasks.
I haven't used ember-concurrency in a few months, and I wanted to remember how the `{{perform}}` helper worked. There's no clear place to look for details on it. I recommend...
hey @machty impressive addon. An example of passing in a task directly to a component [like you did here](https://github.com/machty/ember-concurrency/issues/29#issuecomment-203955505) would be great to have in the docs. (Happy to help...
We have a few common patterns we notice happening and wanted to bring them up in a discussion to see if its anything you think would be helpful adding in...
I randomly tried doing a `.then` on the execution of a task and was pleasantly surprised it worked. I couldn't find documentation on it which makes me worried that it...
After my EmberConf prezo, devs (please comment up if this was you! :) ) were explaining a use case that wasn't elegantly handled by EC. It was something like: >...
Hello I need to check whether variable is instance of Task or TaskInstance but these are not public. Currently I am accessing classes from private namespace, but its sort hacky....
`task.lastSuccessful` points to the last Task Instance that ran to completion. When Task Modifiers (e.g. `.drop()`) are used (and concurrency is constrained to 1), then there's no ambiguity as to...
Scenario: You have an `editor` component that periodically auto-saves content using a concurrent task. If the task lives on the component then switching away from the page could loose saves....
`waitForProperty` waits for a property to have a certain value, yielding immediately if it already has that value. A separate use case is to wait for the property to change...