コード例 #1
0
 private void StartHsmsTimer()
 {
     this.mHsmsTimer = new HSMSTimer((long)this.portCfg.T3, (long)this.portCfg.T6, (long)this.portCfg.T7, (long)this.portCfg.T8, (long)this.portCfg.LinkTest, this.name);
     this.mHsmsTimer.OnHsmsTimeout += new SocketEvent.OnTimeout(this.OnTimeout);
     this.mHsmsTimer.Logger         = this.logger;
     this.mHsmsTimer.Start();
 }
コード例 #2
0
ファイル: HSMSWriter.cs プロジェクト: shawn582818273/CIM
 public HSMSWriter(HSMSTimer aTimer, BinaryWriter aWriter, string name)
 {
     this.mHsmsTimer = aTimer;
     this.writer     = aWriter;
     this.name       = name;
 }
コード例 #3
0
ファイル: HSMSReader.cs プロジェクト: shawn582818273/CIM
 public HSMSReader(BinaryReader aReader, HSMSTimer aTimer, string name)
 {
     this.mHsmsTimer = aTimer;
     this.reader     = aReader;
     this.name       = name;
 }