Created
November 19, 2017 19:37
-
-
Save luisdeol/2605abee73aacfb003e6eaedaa1a5a2c to your computer and use it in GitHub Desktop.
Using the CancellationToken
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace manage_multithreading | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
CancellationTokenSource cancellationTokenSource = new CancellationTokenSource(); | |
CancellationToken token = cancellationTokenSource.Token; | |
int theCount = 0; | |
Console.WriteLine("Task running...Count from 0 to..."); | |
Console.WriteLine("Press ENTER to interrupt the execution!"); | |
Task theIncredibleTask = Task.Run(() => | |
{ | |
while (!token.IsCancellationRequested) | |
{ | |
Thread.Sleep(1000); | |
Console.WriteLine(theCount.ToString()); | |
theCount++; | |
} | |
}, token); | |
Console.ReadLine(); | |
cancellationTokenSource.Cancel(); | |
Console.WriteLine("Execution cancelled!"); | |
Console.ReadLine(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment