1234567891011121314151617181920212223242526 |
- using System.Collections.Generic;
- namespace Virgo_DRT.HostWrapper
- {
- 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 LotComplete(out string reason);
- bool Unclamp(out string reason);
- bool ReadID(out string reason);
- bool Unload(out string reason);
- bool ScanSlot(string portId, out string reason);
- bool PPSelect(string recipeId, out string reason);
- //bool StartTransfer(HostRecipe recipe, out string reason);
- }
- }
|