## Задачи и класс Task ### 1 ``` Task task = new Task( () => Console.WriteLine("Hello Task!") ); task.Start(); ``` ### Вывод: ``` d-pid=9036 --etw-collect-flags=67108622 --detach-event-name=dpa.detach.22128 C:/Users/кусь/Desktop/t5_thread_async/ConsoleApp2/ConsoleApp2/bin/Debug/net8.0/ConsoleApp2.exe Process finished with exit code 0. ``` ### 2 ``` Task task = Task.Run( () => Console.WriteLine("Hello Task!") ); ``` ### Вывод: ``` "C:\Program Files\JetBrains\JetBrains Rider 2023.3.3\plugins\dpa\DotFiles\JetBrains.DPA.Runner.exe" --handle=17544 --backend-pid=9036 --etw-collect-flags=67108622 --detach-event-name=dpa.detach.17544 C:/Users/кусь/Desktop/t5_thread_async/ConsoleApp2/ConsoleApp2/bin/Debug/net8.0/ConsoleApp2.exe Process finished with exit code 0. ``` ### 3 ``` using System; using System.Threading.Tasks; Task task1 = new Task( () => Console.WriteLine("Task1 is executed")); task1.Start(); Task task2 = Task.Factory.StartNew( () => Console.WriteLine("Task2 is executed")); Task task3 = Task.Run( () => Console.WriteLine("Task3 is executed")); Console.ReadLine(); ``` ### Вывод: ``` "C:\Program Files\JetBrains\JetBrains Rider 2023.3.3\plugins\dpa\DotFiles\JetBrains.DPA.Runner.exe" --handle=6752 --backend-pid=9036 --etw-collect-flags=67108622 --detach-event-name=dpa.detach.6752 C:/Users/кусь/Desktop/t5_thread_async/ConsoleApp2/ConsoleApp2/bin/Debug/net8.0/ConsoleApp2.exe Task2 is executed Task1 is executed Task3 is executed ``` ## Ожидание задачи ### 1 ``` using System; using System.Threading; Task task = new Task(Display); task.Start(); Console.WriteLine( "Завершение метода Main"); Console.ReadLine(); static void Display() { Console.WriteLine( "Начало работы метода Display"); Console.WriteLine( "Завершение работы метода Display"); } ``` ### Вывод: ``` "C:\Program Files\JetBrains\JetBrains Rider 2023.3.3\plugins\dpa\DotFiles\JetBrains.DPA.Runner.exe" --handle=6744 --backend-pid=9036 --etw-collect-flags=67108622 --detach-event-name=dpa.detach.6744 C:/Users/кусь/Desktop/t5_thread_async/ConsoleApp2/ConsoleApp2/bin/Debug/net8.0/ConsoleApp2.exe Начало работы метода Display Завершение работы метода Display Завершение метода Main ``` ## Aсинхронное программирование. Асинхронные методы, async и await ### 1 ``` using System; using System.Threading; using System.Threading.Tasks; // вызов асинхронного метода FactorialAsync(); Console.WriteLine( "Введите число: "); int n = Int32.Parse(Console.ReadLine()); Console.WriteLine( $"Квадрат числа равен {n * n}"); Console.Read(); static void Factorial() { int result = 1; for(int i = 1; i <= 6; i++) { result *= i; } Thread.Sleep(8000); Console.WriteLine( $"Факториал равен {result}"); } // определение асинхронного метода static async void FactorialAsync() { // выполняется синхронно Console.WriteLine( "Начало метода FactorialAsync"); // выполняется асинхронно await Task.Run(()=>Factorial()); Console.WriteLine( "Конец метода FactorialAsync"); } ``` ### Вывод: ``` Начало метода FactorialAsync Введите число: Факториал равен 720 Конец метода FactorialAsync ``` ### 2 ``` using System; using System.Threading; using System.Threading.Tasks; using System.IO; ReadWriteAsync(); Console.WriteLine("Некоторая работа"); Console.Read(); static async void ReadWriteAsync() { string s = "Hello world! One step at a time"; // hello.txt - файл, который будет записываться и считываться using (StreamWriter writer = new StreamWriter("hello.txt", false)) { // асинхронная запись в файл await writer.WriteLineAsync(s); } using (StreamReader reader = new StreamReader("hello.txt")) { // асинхронное чтение из файла string result = await reader.ReadToEndAsync(); Console.WriteLine(result); } } ``` ### Вывод: ``` Hello world! One step at a time Некоторая работа ``` ## Определение асинхронной операции ### 1 ``` StreamWriter writer = new StreamWriter("hello.txt", false); // асинхронная запись в файл await writer.WriteLineAsync("Hello"); ``` ### Вывод: ``` Process finished with exit code 0. ``` ### 2 ``` static void Factorial() { int result = 1; for (int i = 1; i <= 6; i++) { result *= i; } Thread.Sleep(8000); Console.WriteLine($"Факториал равен {result}"); } // определение асинхронного метода static async void FactorialAsync() { // вызов асинхронной операции await Task.Run(()=>Factorial()); } ``` ### Вывод: ``` Process finished with exit code 0. ``` ### 3 ``` static async void FactorialAsync() { await Task.Run(() => { int result = 1; for (int i = 1; i <= 6; i++) { result *= i; } Thread.Sleep(8000); Console.WriteLine($"Факториал равен {result}"); }); } ``` ### Вывод: ``` Process finished with exit code 0. ``` ## Передача параметров в асинхронную операцию ### 1 ``` using System; using System.Threading; using System.Threading.Tasks; FactorialAsync(5); FactorialAsync(6); Console.WriteLine("Некоторая работа"); Console.Read(); static void Factorial(int n) { int result = 1; for (int i = 1; i <= n; i++) { result *= i; } Thread.Sleep(5000); Console.WriteLine($"Факториал равен {result}"); } // определение асинхронного метода static async void FactorialAsync(int n) { await Task.Run(()=>Factorial(n)); } ``` ### Вывод: ``` Некоторая работа Факториал равен 720 Факториал равен 120 ``` ## Получение результата из асинхронной операции ### 1 ``` using System; using System.Threading; using System.Threading.Tasks; FactorialAsync(5); FactorialAsync(6); Console.Read(); static int Factorial(int n) { int result = 1; for (int i = 1; i <= n; i++) { result *= i; } return result; } // определение асинхронного метода static async void FactorialAsync(int n) { int x = await Task.Run(()=>Factorial(n)); Console.WriteLine($"Факториал равен {x}"); } ``` ### Вывод: ``` Факториал равен 720 Факториал равен 120 ``` ## Возвращение результата из асинхронного метода ### 1 Void ``` static void Factorial(int n) { int result = 1; for (int i = 1; i <= n; i++) { result *= i; } Console.WriteLine($"Факториал равен {result}"); } // определение асинхронного метода static async void FactorialAsync(int n) { await Task.Run(()=>Factorial(n)); } ``` ### Вывод: ``` Process finished with exit code 0. ``` ### 2 Task ``` using System; using System.Threading.Tasks; FactorialAsync(5); FactorialAsync(6); Console.WriteLine("Некоторая работа"); Console.Read(); static void Factorial(int n) { int result = 1; for (int i = 1; i <= n; i++) { result *= i; } Console.WriteLine($"Факториал равен {result}"); } // определение асинхронного метода static async Task FactorialAsync(int n) { await Task.Run(()=>Factorial(n)); } ``` ### Вывод: ``` Факториал равен 120 Некоторая работа Факториал равен 720 ``` ### 3 Task (T) ``` using System; using System.Threading.Tasks; int n1 = await FactorialAsync(5); int n2 = await FactorialAsync(6); Console.WriteLine($"n1={n1} n2={n2}"); Console.Read(); static int Factorial(int n) { int result = 1; for (int i = 1; i <= n; i++) { result *= i; } return result; } // определение асинхронного метода static async Task FactorialAsync(int n) { return await Task.Run(()=>Factorial(n)); } ``` ### Вывод: ``` n1=120 n2=720 ``` ## Последовательный и параллельный вызов асинхронных операций ### 1 ``` using System; using System.Threading.Tasks; FactorialAsync(); Console.Read(); static void Factorial(int n) { int result = 1; for (int i = 1; i <= n; i++) { result *= i; } Console.WriteLine($"Факториал числа {n} равен {result}"); } // определение асинхронного метода static async void FactorialAsync() { await Task.Run(() => Factorial(4)); await Task.Run(() => Factorial(3)); await Task.Run(() => Factorial(5)); } ``` ### Вывод: ``` Факториал числа 4 равен 24 Факториал числа 3 равен 6 Факториал числа 5 равен 120 ``` ## Обработка ошибок в асинхронных методах ### 1 ``` using System; using System.Threading; using System.Threading.Tasks; FactorialAsync(-4); FactorialAsync(6); Console.Read(); static void Factorial(int n) { if (n < 1) throw new Exception($"{n} : число не должно быть меньше 1"); int result = 1; for (int i = 1; i <= n; i++) { result *= i; } Console.WriteLine($"Факториал числа {n} равен {result}"); } static async void FactorialAsync(int n) { try { await Task.Run(() => Factorial(n)); } catch (Exception ex) { Console.WriteLine(ex.Message); } } ``` ### Вывод: ``` Факториал числа 6 равен 720 -4 : число не должно быть меньше 1 ``` ## Отмена асинхронных операций ### 1 ``` using System; using System.Threading; using System.Threading.Tasks; CancellationTokenSource cts = new CancellationTokenSource(); CancellationToken token = cts.Token; FactorialAsync(6, token); Thread.Sleep(3000); cts.Cancel(); Console.Read(); static void Factorial(int n, CancellationToken token) { int result = 1; for (int i = 1; i <= n; i++) { if (token.IsCancellationRequested) { Console.WriteLine( "Операция прервана токеном"); return; } result *= i; Console.WriteLine( $"Факториал числа {i} равен {result}"); Thread.Sleep(1000); } } // определение асинхронного метода static async void FactorialAsync(int n, CancellationToken token) { if(token.IsCancellationRequested) return; await Task.Run(()=>Factorial(n, token)); } ``` ### Вывод: ``` Факториал числа 1 равен 1 Факториал числа 2 равен 2 Факториал числа 3 равен 6 Операция прервана токеном ```