예제 #1
0
        private Exception m_exception;               // Final exception to be used for completing the sequence.

        public AsyncTaskSequenceParallel(ComponentBase component)
            : base(component)
        {
            m_completedActions = new List <AsyncTask>();
        }
예제 #2
0
 private string m_name;                    // A friendly name for the task sequence. If not set, it is inferred from the type.
 public AsyncTaskSequence(ComponentBase component)
 {
     m_component = component;
     m_actions   = new Queue <AsyncTask>(5);
     m_name      = String.Empty;
 }
예제 #3
0
 public AsyncTaskSequenceSerial(ComponentBase component)
     : base(component)
 {
 }