예제 #1
0
        private void FireNotificationEvent(Types.Commutation.HWWarningReason Warning, Types.Commutation.HWFaultReason Fault)
        {
            SystemHost.Journal.AppendLog(m_ID, LogMessageType.Warning,
                                         string.Format("Commutation device notification: warning {0}, fault {1}",
                                                       Warning, Fault));

            m_Communication.PostCommutationNotificationEvent(Warning, Fault);
        }
예제 #2
0
 public void PostCommutationNotificationEvent(Types.Commutation.HWWarningReason Warning,
                                              Types.Commutation.HWFaultReason Fault)
 {
     EnumerateClients(Client => Client.CommutationNotificationHandler(Warning, Fault));
 }
예제 #3
0
 public void AddCommutationWarningEvent(Types.Commutation.HWWarningReason Warning)
 {
 }