IRoutine.cs 262 B

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