IHostCallback.cs 477 B

123456789101112131415161718192021
  1. using System.Collections.Generic;
  2. namespace Aitex.RT.FactoryAutomation
  3. {
  4. public interface IHostCallback
  5. {
  6. string GetSvidValue(string svName);
  7. List<string> GetListSvidValue(string svName);
  8. bool Start(out string reason);
  9. bool Pause(out string reason);
  10. bool Resume(out string reason);
  11. bool Abort(out string reason);
  12. bool RunRecipe(string lotId, string jobId, string recipeName , out string reason);
  13. }
  14. }