123456789101112131415161718192021 |
- using System.Collections.Generic;
- namespace Aitex.RT.FactoryAutomation
- {
- public interface IHostCallback
- {
- string GetSvidValue(string svName);
- List<string> GetListSvidValue(string svName);
- bool Start(out string reason);
- bool Pause(out string reason);
- bool Resume(out string reason);
- bool Abort(out string reason);
- bool RunRecipe(string lotId, string jobId, string recipeName , out string reason);
- }
- }
|