IRoutine.cs 316 B

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