Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in task-parallel-library

What should I do to use Task<T> in .NET 2.0?

When should Task.ContinueWith be called with TaskScheduler.Current as an argument?

Why use C# async/await for CPU-bound tasks [closed]

How to process MSMQ messages in parallel

Is it ok to derive from TPL Task to return more details from method?

How to start a List<Task> in parallel?

c# task-parallel-library

Using Task or async/await in IHttpAsyncHandler

Task.Yield() versus Task.Delay(0)

Aborting a long running task in TPL

Thread safe Entity Framework 6

Faulted vs Canceled task status after CancellationToken.ThrowIfCancellationRequested

Why is this TAP async/await code slower than the TPL version?

Parallel.Foreach exceptions and cancel

Running a WPF control in another thread

AttachedToParent Task confusion

Why do we need ContinueWith method?

How to write unit tests with TPL and TaskScheduler

Ignore the Tasks throwing Exceptions at Task.WhenAll and get only the completed results

Convert any given function into an awaitable task

Continuation Task in the same thread as previous