How to interrupt dynamic loading of assets?

I know that loading methods return Future instances, but I couldnt find out if it’s possible to use them to cancel runtime loading.

Assets.loadLibrary(someLibrary).onComplete(loadComplete).onProgress(loadProgress).onError(loadError);

private function loadError(error:Dynamic):Void
{
    //An error screen is shown here, and I want to abort further loading to save traffic
}

This is not yet possible

There were some problems getting this to work on all platforms when we tried to implement a cancel API for network requests but this could be checked again to see if we can do it

:pray: