-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DBTasks cannot be cancelled anymore #76
Comments
|
Thanks for the report! We'll look into it. |
|
Thanks! :) |
|
As of today f038385 DBDownloadDataTask still does not have the cancel implemented. Any ETA on delivery? |
|
I don't have an ETA unfortunately. I'll follow up here once I have an update. |
|
Hi Greg. This problem is preventing us from moving to the new API (and time is running out). We either need this one fixed or alternatively a way to chunk download requests using the ObjC API (as is currently possible with uploads). Which is more likely? |
|
Thanks for checking in on this. This should be getting fixed, but I don't have an ETA right now. |
|
@paulbeadle @Twv: Apologies for the long delay here. This should be fixed now in the latest version of the SDK (v3.0.0). |
Previously, running instances of
DBTaskssubclasses could be cancelled by calling-cancel. However, with the restructuring in commit dc4714f, calling-cancelthrows an exception because the method is not implemented in the concrete subclass. The only subclass that implements this method isDBBatchUploadTask(which also declares the method again in theDBTasksImpl.h). Are the other subclasses missing an implementation of this method?The same problem also applies to the methods
-suspend,-resumeand-start.The text was updated successfully, but these errors were encountered: