I am using DataDroid (http://www.datadroidlib.com/) in my android app to execute Rest API. Suppose I have a queue of requests like this:
- Call getInbox
- Call getFeedbackFilterByFeedbackId
- Call getInbox
- Call getFeedbackFilterByFeedbackId
- Call getInbox
- Call getFeedbackFilterByFeedbackId
- Call getInbox
- Call getFeedbackFilterByFeedbackId
- Call getInbox
- Call getFeedbackFilterByFeedbackId
At anytime, I want to cancel/remove a request from the queue (ie. request 5). Currently, DataDroid does not support this feature (http://www.datadroidlib.com/2013/01/datadroid-2-1-released#comment-277). FoxyKeep said that they will support this feature in the future. But I can't wait, I think I should implement this feature by my self. I just want to ask is there anyone who already customize DataDroid to implement this feature? If yes, please share me your solution. Any recommendation are welcome.
Thanks