コード例 #1
0
ファイル: IOCommutation.cs プロジェクト: lardc/mme_software
        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
ファイル: QueueWorker.cs プロジェクト: lardc/mme_software
 public void AddCommutationFaultEvent(Types.Commutation.HWFaultReason Fault)
 {
 }