Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
CompleteWaitThreadPoolWorkItem.cs
Go to the documentation of this file.
1namespace System.Threading;
2
4{
6
7 private bool _timedOut;
8
10 {
12 }
13
18
19 public CompleteWaitThreadPoolWorkItem(RegisteredWaitHandle registeredWaitHandle, bool timedOut)
20 {
21 _registeredWaitHandle = registeredWaitHandle;
22 _timedOut = timedOut;
23 }
24}
CompleteWaitThreadPoolWorkItem(RegisteredWaitHandle registeredWaitHandle, bool timedOut)
static void CompleteWait(RegisteredWaitHandle handle, bool timedOut)