NetMQ.Core.Reaper.TimerEvent C# (CSharp) Method

TimerEvent() public method

This would be called when a timer expires - however in this event NotSupportedException would be thrown.
You must not call TimerEvent on a Reaper.
public TimerEvent ( int id ) : void
id int an integer used to identify the timer
return void
        public void TimerEvent(int id)
        {
            throw new NotSupportedException();
        }