예제 #1
0
파일: Tests1.cs 프로젝트: CriDos/AsTask
        public async Task TestToDynamicThreadPool1()
        {
            await AsTask.ToDynamicThreadPool();

            Console.WriteLine(AsTask.WhereAmI());
            Assert.True(AsTask.IsDynamicThreadPool(), "This is not the DynamicThreadPool!");
        }
예제 #2
0
파일: Tests1.cs 프로젝트: CriDos/AsTask
        public async Task TestToBackgroundContext()
        {
            await AsTask.ToBackgroundContext();

            Console.WriteLine(AsTask.WhereAmI());
            Assert.True(AsTask.IsBackgroundContext(), "This is not the BackgroundContext!");
        }
예제 #3
0
파일: Tests1.cs 프로젝트: CriDos/AsTask
        public async Task TestToAsyncContext()
        {
            await AsTask.ToContext(_contextTests1Id);

            Console.WriteLine(AsTask.WhereAmI());
            Assert.True(AsTask.IsThreadContext(_contextTests1Id), $"This is not the AsContext({_contextTests1Id})!");
        }
예제 #4
0
파일: Tests1.cs 프로젝트: CriDos/AsTask
        public async Task TestDelayAwaiterMainContext()
        {
            await AsTask.ToMainContext();

            var stopwatch = Stopwatch.StartNew();
            await Task.Delay(100);

            stopwatch.Stop();
            Assert.True(AsTask.IsMainContext(), $"This is not the MainContext: {AsTask.WhereAmI()}");
            Console.WriteLine($"{nameof(stopwatch)} {stopwatch.ElapsedMilliseconds}ms == {AsTask.GetCurrentContextType()} awaiter 100ms");
            Assert.True(stopwatch.ElapsedMilliseconds >= 80 && stopwatch.ElapsedMilliseconds <= 150);
        }
예제 #5
0
        private static async Task Main()
        {
            WriteLine("Assign an exception handler.");
            TaskExceptionHandler.SetExceptionHandler(task =>
            {
                Error.WriteLine(task.Exception != null
                    ? $"[ExceptionHandler] {task.Exception.GetBaseException().Message}"
                    : $"[ExceptionHandler] Unhandled exception in task {task}");
            });


            WriteLine("We get or create a synchronization context and switch to it.");
            await AsTask.Initialize();

            WriteLine($"Print to the console information about the current context: {AsTask.WhereAmI()}");

            WriteLine("Switch to the background context.");
            await AsTask.ToBackgroundContext();

            WriteLine($"Now we get information about the context of the background context: {AsTask.WhereAmI()}");

            WriteLine("Back switch to the main context.");
            await AsTask.ToMainContext();

            WriteLine("We call the asynchronous methods, which performs the heavy work...");
            var tasks = new List <Task <long> >();

            for (var i = 1; i <= 10; i++)
            {
                tasks.Add(FindPrimeNumberAsync(20000 * i));
            }

            WriteLine("Asynchronously waiting for the execution of tasks.");
            _ = Task.WhenAll(tasks).ContinueWith(async task =>
            {
                await AsTask.ToMainContext();

                WriteLine("This is the result of our calculations:");

                foreach (var val in task.Result)
                {
                    WriteLine(val);
                }

                Shutdown();
            }).ExceptionHandler();

            if (AsTask.IsMainContext())
            {
                WriteLine("hmm, we're still in the main context!:)");
            }

            WriteLine("The life cycle of a console application runs on the main context.");
            var scheduler = AsTask.GetStaticTaskScheduler();

            while (!_isShutdown)
            {
                WriteLine($"Count running tasks: {scheduler.CountExecutableTasks}; Count tasks in queue: {scheduler.CountTasksInQueue}");
                await Task.Delay(1000); // Each iteration waits asynchronously for 1000 ms
            }

            WriteLine("Shutdown...");
            for (var i = 5; i > 0; i--)
            {
                WriteLine($"Shutdown through {i}s");
                await Task.Delay(1000);
            }
        }