Imagine I have some code to read from the start to end of a file like so:
while(sw.readline != null) {
}
I want this to be fully asynchronous. When deriving from IHTTPAsyncHandler, where would this code go and where would would the code to get the content of each line go? I'm a little confused of how to use this interface as I haven't seen a good example on the net.
Thanks