IRoutine.cs 298 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using MECF.Framework.Common.Routine;
  6. namespace Aitex.Core.RT.Routine
  7. {
  8. public interface IRoutine
  9. {
  10. RState Start(params object[] objs);
  11. RState Monitor();
  12. void Abort();
  13. }
  14. }