1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- using System.Collections.Generic;
- namespace VirgoRT.HostWrapper
- {
- public interface IFaHost
- {
-
-
-
-
-
-
-
-
-
-
- string FaCommunicationState { get; }
-
-
-
-
-
-
-
-
-
- string FaControlState { get; }
- string FaControlSubState { get; }
-
-
-
- bool IsConnected { get; }
- int SpoolingState { get; }
- string SpoolingActual { get; }
- string SpoolingTotal { get; }
- string SpoolingFullTime { get; }
- string SpoolingStartTime { get; }
- bool IsSpoolingEnable { get; }
- void Initialize(IHostCallback equipment, string modelFile);
- void Terminate();
- void Enable();
- void Disable();
- void SetLocalControl();
- void SetRemoteControl();
-
-
-
-
-
- void NotifyEvent(string eventName, Dictionary<string,string> dvid);
-
-
-
-
-
- void NotifyAlarm(string alarmName, Dictionary<string, string> dvid, string text);
- }
- }
|