Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ TimerSetup()

void System.Threading.Timer.TimerSetup ( TimerCallback callback,
object state,
uint dueTime,
uint period,
bool flowExecutionContext = true )
inlineprivate

Definition at line 122 of file Timer.cs.

123 {
124 if (callback == null)
125 {
126 throw new ArgumentNullException("callback");
127 }
128 _timer = new TimerHolder(new TimerQueueTimer(callback, state, dueTime, period, flowExecutionContext));
129 }
TimerHolder _timer
Definition Timer.cs:12

References System.Threading.Timer._timer, and System.state.

Referenced by System.Threading.Timer.Timer(), System.Threading.Timer.Timer(), System.Threading.Timer.Timer(), System.Threading.Timer.Timer(), and System.Threading.Timer.Timer().