How do I abort HTTP requests fired by Ember Data?

I have a model that have to be updated (reloaded) on certain user actions. If two of those actions happen in quick succession, I’d like the first update request to be aborted because a) it’s result will be outdated, and b) the request takes some time (so queueing those requests is not an option either).

Is there a way to easily achieve this with Ember Data?

EDIT: Just realized that this is a practical question that should rather be posted on stackoverflow, so feel free to delete it here.

Hi
Did you resolve that problem?