I am learning AsyncQueryHandler. Is there any Example or demo available which can describe this properly. I have seen some example which were taken from some project. But that was not that clear. I was looking more of a sample project which is implementing this concept. Thanks in advance
1 Answer
There is question about this topic with example in comments: see here
Also you should realize that AsyncQueryHandler is an abstract class, so you need to create class that extends AsyncQueryHandler and override (at least) its unimplemented methods.
4 Comments
pskink
no, its no abstract class, but yes, without extending it, ACH is helpless
pskink
hmm, i could swear it wasnt abstract when i was reading its docs, but yes you are right, it is.
MrDumb
Anyways have you got any demo which can explain curd operations.