Brass9.Threading.TimerInfo.TimerInfo C# (CSharp) Method

TimerInfo() public method

Setup a TimerInfo object.
public TimerInfo ( System.Action timerCallback ) : System
timerCallback System.Action The Action to call each time the Timer fires. Does away with a context object argument - use a closure instead.
return System
		public TimerInfo(Action timerCallback)
		{
			this.timerCallback = timerCallback;
			Interval = Timeout.Infinite;
			Active = false;
		}