We are working on an Android app for emails. Need to code in some ASYNC processing for threading issues (bit new for me) but not sure the best way to do this with Chilkat. Started going through the online examples but the website started popping "404 Errors - File or Directory not found" on any example.
So, started going through the actual documentation and not sure how best to proceed. Hoping someone on here can point us in the right direction.
A basic overview, our main thread lists a couple email accounts. Hitting a single button will cause the emails to be checked for new emails. Each "account" calls an update procedure independently.
This separate procedure: - puts in the account credentials in either MAILMAN or IMAP calls. - Logs into the server - Gets all the UIDLs - Compares them for new ones - Fetchs each new email as needed - Logs out
We will want each account to keep a progress bar or counter going as this is processing, individually.
Looking through the documentation, almost every main function (GetMailboxCount, GetUidls, FetchEmail,...) has an ASYNC version it seems. So the question is, do I call the ASYNC version for each function... "running" it individually, or do I some how wrap them all in a different ASYNC thread?
Any help or suggestions or direction... would be greatly appreciated.