Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) Async Methods Returning an ObjectDemonstrates how to call an asynchronous method that returns an object. This example reads email from a POP3 server using the Async versions of the Chilkat methods.
#include <CkGlobal.h> #include <CkMailMan.h> #include <CkTask.h> #include <CkEmail.h> void ChilkatSample(void) { CkString strOut; // All Chilkat classes can be unlocked at once at the beginning of a program // by calling UnlockBundle. It requires a Bundle unlock code. CkGlobal chilkatGlob; bool success = chilkatGlob.UnlockBundle("Anything for 30-day trial."); if (success != true) { strOut.append(chilkatGlob.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } CkMailMan mailman; // Set the POP3 server's hostname mailman.put_MailHost("pop.someMailServer.com"); // Set the POP3 login/password and any other requirements.. mailman.put_PopUsername("myLogin"); mailman.put_PopPassword("myPassword"); mailman.put_PopSsl(true); mailman.put_MailPort(995); // Connect to the POP3 server: CkTask *task = mailman.Pop3BeginSessionAsync(); if (mailman.get_LastMethodSuccess() == false) { strOut.append(mailman.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Start the background task. success = task->Run(); if (!success) { strOut.append(task->lastErrorText()); strOut.append("\r\n"); delete task; SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Wait for the POP3 connect task to finish. // The true/false returned by Wait applies to the Wait method call, not the task. int maxWaitMs = 30000; success = task->Wait(maxWaitMs); if (!success || (task->get_StatusInt() != 7) || (task->get_TaskSuccess() != true)) { if (!success) { // The task.LastErrorText applies to the Wait method call. strOut.append(task->lastErrorText()); strOut.append("\r\n"); } else { // The ResultErrorText applies to the underlying task method call (i.e. the Pop3BeginSession) strOut.append(task->status()); strOut.append("\r\n"); strOut.append(task->resultErrorText()); strOut.append("\r\n"); } delete task; SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } delete task; // Get the number of messages in the mailbox. task = mailman.GetMailboxCountAsync(); // To keep the example short, we'll skip handling failures. // The failures would be handled in the same way as shown above. success = task->Run(); success = task->Wait(maxWaitMs); int numMessages = task->GetResultInt(); delete task; if (numMessages == 0) { SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } CkEmail email; int i; for (i = 1; i <= numMessages; i++) { task = mailman.FetchByMsgnumAsync(i); if (mailman.get_LastMethodSuccess() == false) { strOut.append(mailman.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } success = task->Run(); success = task->Wait(maxWaitMs); if (!success || (task->get_StatusInt() != 7) || (task->get_TaskSuccess() != true)) { if (!success) { // The task.LastErrorText applies to the Wait method call. strOut.append(task->lastErrorText()); strOut.append("\r\n"); } else { // The ResultErrorText applies to the underlying task method call (i.e. the FetchByMsgnum) strOut.append(task->status()); strOut.append("\r\n"); strOut.append(task->resultErrorText()); strOut.append("\r\n"); } delete task; SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Each Chilkat object that can be a return value of an asynchronous task will // have a method named LoadTaskResult. The object returned in the underlying // asynchronous method call is retrieved by calling LoadTaskResult. // To say it another way: The application will provide a pre-existing object of // the desired return type (in this case it is an email object). This object is // loaded by calling LoadTaskResult. success = email.LoadTaskResult(*task); delete task; if (!success) { strOut.append(email.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } else { strOut.append(email.ck_from()); strOut.append(": "); strOut.append(email.subject()); strOut.append("\n"); strOut.append("\r\n"); } } SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.