IMB3.TEventEntry.HandleTimerTick C# (CSharp) 메소드

HandleTimerTick() 개인적인 메소드

private HandleTimerTick ( TByteBuffer aPayload ) : void
aPayload IMB3.ByteBuffers.TByteBuffer
리턴 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);
        }