Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in task-parallel-library

Firing off multiple Tasks asynchronously and waiting for them to complete [duplicate]

Task execution with and without await operator

TPL cancellation continuation never called on cancelled Task

Progress bar in parallel loop invocation

BufferBlock and ActionBlock with BoundedCapacity does not use max DOP

When does Task.Run(Action, CancellationToken) throw TaskCanceledException?

Creating and starting a task on the UI thread

Task.Factory.ContinueWhenAny continue when any task finish without exception

Get Action from Task in C#

Async/Await or Task.Run in Console Application/Windows Service

ActionBlock<T> vs Task.WhenAll

Why is the synchronization context null even when I try to change UI from a worker and why does the worker wait on the UI thread even when I don't?

Correct pattern to dispose of cancellation token source

CallContext.SetData() - is object available when thread goes active-inactive-active (TPL)?

How do I know whether a Task is canceled by a timeout or a manual trigger?

Throwing exception from Task.Run displays "Not Handled from User Code" Message

Do you have to await async methods?

Run Asynchronous tasks in Batch

asp.net - How does parallel.for works

Why does Console.ReadKey() block output of Console.WriteLine called in another thread?