12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Aitex.Core.RT.Routine
- {
- public interface IRoutine
- {
- //bool Initialize();
- //void Terminate();
- Result Start(params object[] objs);
- Result Monitor();
- void Abort();
- }
- }
|