Hi,
What is the best method to handle errors while transferring in Asynch mode. I need to keep track of things like:
- Failed and successfully transfered filenames,
- Servers to which a file failed to transfer,
- Failure to close connections when a connection to a server is broken prematurely.
I know that BEGINxxxx asynch methods "queues" actions and takes them one by one. But how do I handle an error like the above when it happens after a command has been queued?
I already posted a question about the difference between Asynch callback results and using error handlers. I suppose this issue directly relates to this question. I appreciate any example that you can give.
Thanks