예제 #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
 public HSMSWriter(HSMSTimer aTimer, BinaryWriter aWriter, string name)
 {
     this.mHsmsTimer = aTimer;
     this.writer     = aWriter;
     this.name       = name;
 }
예제 #3
0
 public HSMSReader(BinaryReader aReader, HSMSTimer aTimer, string name)
 {
     this.mHsmsTimer = aTimer;
     this.reader     = aReader;
     this.name       = name;
 }