Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PowerBuilder) Async Task Chain (another example)Demonstrates using a task chain to run a sequence of FTP tasks asynchronously.
integer li_rc oleobject loo_ChilkatGlob integer li_Success oleobject loo_Ftp oleobject loo_TaskChain oleobject loo_Task string ls_LocalFilename string ls_RemoteFilename integer li_NumTasks integer li_TaskIdx // All Chilkat classes can be unlocked at once at the beginning of a program // by calling UnlockBundle. It requires a Bundle unlock code. loo_ChilkatGlob = create oleobject // Use "Chilkat_9_5_0.Global" for versions of Chilkat < 10.0.0 li_rc = loo_ChilkatGlob.ConnectToNewObject("Chilkat.Global") if li_rc < 0 then destroy loo_ChilkatGlob MessageBox("Error","Connecting to COM object failed") return end if li_Success = loo_ChilkatGlob.UnlockBundle("Anything for 30-day trial.") if li_Success <> 1 then Write-Debug loo_ChilkatGlob.LastErrorText destroy loo_ChilkatGlob return end if loo_Ftp = create oleobject // Use "Chilkat_9_5_0.Ftp2" for versions of Chilkat < 10.0.0 li_rc = loo_Ftp.ConnectToNewObject("Chilkat.Ftp2") loo_Ftp.Hostname = "ftp.example.com" loo_Ftp.Username = "login" loo_Ftp.Password = "password" // Connect and login to the FTP server. li_Success = loo_Ftp.Connect() if li_Success <> 1 then Write-Debug loo_Ftp.LastErrorText destroy loo_ChilkatGlob destroy loo_Ftp return end if loo_TaskChain = create oleobject // Use "Chilkat_9_5_0.TaskChain" for versions of Chilkat < 10.0.0 li_rc = loo_TaskChain.ConnectToNewObject("Chilkat.TaskChain") // Create a task to change to the remote directory where the file will be uploaded. loo_Task = loo_Ftp.ChangeRemoteDirAsync("junk") if loo_Ftp.LastMethodSuccess = 0 then Write-Debug loo_Ftp.LastErrorText destroy loo_ChilkatGlob destroy loo_Ftp destroy loo_TaskChain return end if // Add this task to the task chain. li_Success = loo_TaskChain.Append(loo_Task) destroy loo_Task // Create a task to upload a file. ls_LocalFilename = "c:/temp/hamlet.xml" ls_RemoteFilename = "hamlet.xml" loo_Task = loo_Ftp.PutFileAsync(ls_LocalFilename,ls_RemoteFilename) if loo_Ftp.LastMethodSuccess = 0 then Write-Debug loo_Ftp.LastErrorText destroy loo_ChilkatGlob destroy loo_Ftp destroy loo_TaskChain return end if // Add this task to the task chain. li_Success = loo_TaskChain.Append(loo_Task) destroy loo_Task // Start the task chain running in a background thread. // Each task is run one after the other (on the same background thread) until all tasks have completed. // The task chain will stop at the first task that fails. loo_TaskChain.StopOnFailedTask = 1 li_Success = loo_TaskChain.Run() if not li_Success then Write-Debug loo_TaskChain.LastErrorText destroy loo_ChilkatGlob destroy loo_Ftp destroy loo_TaskChain return end if // The application is now free to do anything else // while the FTP commands are being run... // For this example, we'll simply sleep and periodically // check to see if the taskchain if finished. do while loo_TaskChain.Finished <> 1 // Sleep 100 ms. loo_TaskChain.SleepMs(100) loop // A finished task chain could be one that was canceled, aborted, or truly finished. // If the task chain "completed", then it ran to completion. A "completed" task will // have a StatusInt equal to 7. If the task finished, but was not completed, then it must've // been aborted or canceled: if loo_TaskChain.StatusInt <> 7 then Write-Debug "Task did not complete." Write-Debug "task chain status: " + loo_TaskChain.Status destroy loo_ChilkatGlob destroy loo_Ftp destroy loo_TaskChain return end if // If we got to this point, the ChangeRemoteDir and PutFile were successful. // We can visually verify by examining the LastErrorText that was recorded for each // of these method calls.. li_NumTasks = loo_TaskChain.NumTasks li_TaskIdx = 0 do while (li_TaskIdx < li_NumTasks) loo_Task = loo_TaskChain.GetTask(li_TaskIdx) // Examine the status of this task, and the ResultErrorText // (the ResultErrorText is the ftp.LastErrorText captured for FTP method called by the task). // Everything should indicate success. Write-Debug "task status: " + loo_Task.Status Write-Debug "task log: " + loo_Task.ResultErrorText destroy loo_Task li_TaskIdx = li_TaskIdx + 1 loop li_Success = loo_Ftp.Disconnect() destroy loo_ChilkatGlob destroy loo_Ftp destroy loo_TaskChain |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.