當前位置: 首頁>>代碼示例>>C#>>正文


C# Thread.Run方法代碼示例

本文整理匯總了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);
        }
開發者ID:ReactiveServices,項目名稱:ReactiveServices.MessageBus,代碼行數:25,代碼來源:ThreadExecutor.cs

示例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);
        }
開發者ID:hardlydifficult,項目名稱:HardlyBot,代碼行數:15,代碼來源:ThreadHelpersTests.cs

示例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);
 }
開發者ID:ReactiveServices,項目名稱:ReactiveServices.MessageBus,代碼行數:20,代碼來源:ThreadExecutor.cs


注:本文中的System.Threading.Thread.Run方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。