本文整理匯總了C#中System.Threading.Thread.Run方法的典型用法代碼示例。如果您正苦於以下問題:C# Thread.Run方法的具體用法?C# Thread.Run怎麽用?C# Thread.Run使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Threading.Thread
的用法示例。
在下文中一共展示了Thread.Run方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Repeat
public void Repeat(string name, Action action, Action<Exception> onException, int interval = 100, ThreadPriority priority = ThreadPriority.Normal, CancellationToken? cancellationToken = null)
{
var thread = new Thread(
() =>
{
try
{
while (true)
{
if (cancellationToken.HasValue && cancellationToken.Value.IsCancellationRequested)
break;
Sleep(interval);
action();
}
}
catch (Exception e)
{
onException(e);
}
}
);
thread.Run(priority);
Register(thread, cancellationToken, name);
}
示例2: ThreadWaitTillAllCompleteTest
public void ThreadWaitTillAllCompleteTest()
{
counter = 0;
Thread[] threads = new Thread[100];
for(int i = 0; i < threads.Length; i++) {
threads[i] = new Thread(() => {
Thread.SleepInSeconds(Random.Uint.LessThan(3));
Interlocked.Increment(ref counter);
});
}
threads.Run();
Assert.IsTrue(counter == threads.Length);
}
示例3: Run
public void Run(string name, Action action, Action<Exception> onException, ThreadPriority priority = ThreadPriority.Normal, CancellationToken? cancellationToken = null)
{
var thread = new Thread(
() =>
{
try
{
if (cancellationToken.HasValue && cancellationToken.Value.IsCancellationRequested)
return;
action();
}
catch (Exception e)
{
onException(e);
}
}
);
thread.Run(priority);
Register(thread, cancellationToken, name);
}