Asynchronous task
    Create asynchronous tasks to run code asynchronously. 
     TIP: 
    
FactoryTalk Optix Studio
 provides C# class specifications that exhibit the constructors that you can use for creating asynchronous tasks. The constructors are based on the .NET Framework C# System.Threading.Tasks.Task
 class, which represents an asynchronous task. See Task Class.Available classes
      You can use these classes to create asynchronous tasks:
        
- PeriodicTask
 - A task that runs code at regular time intervals.
 - DelayedTask
 - A task that runs code after a time delay.
 - LongRunningTask
 - A task that requires significant time or CPU resources.
 
Provide Feedback