123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using MECF.Framework.Common.Routine;
- using Venus_Core;
- namespace Aitex.Core.RT.Routine
- {
- public interface IRoutine
- {
- RState Start(params object[] objs);
- RState Monitor();
- void Abort();
- }
- }
|