IMB3.TEventEntry.HandleTimerTick C# (CSharp) Method

HandleTimerTick() private method

private HandleTimerTick ( TByteBuffer aPayload ) : void
aPayload IMB3.ByteBuffers.TByteBuffer
return void
        private void HandleTimerTick(TByteBuffer aPayload) {
            if (OnTimerTick == null) return;
            string timerName;
            Int32 tick;
            Int64 tickTime;
            Int64 startTime;
            aPayload.Read(out timerName);
            aPayload.Read(out tick);
            aPayload.Read(out tickTime);
            aPayload.Read(out startTime);
            OnTimerTick(this, timerName, tick, tickTime, startTime);
        }