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