Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in task-parallel-library

Does the use of async/await create a new thread?

How do Reactive Framework, PLINQ, TPL and Parallel Extensions relate to each other?

Passing a method parameter using Task.Factory.StartNew

can not await async lambda

Parallel.ForEach can cause a "Out Of Memory" exception if working with a enumerable with a large object

How to put a task to sleep (or delay) in C# 4.0?

Why does TaskCanceledException occur?

Difference between the TPL & async/await (Thread handling)

multiple awaits vs Task.WaitAll - equivalent?

Is Task.Factory.StartNew() guaranteed to use another thread than the calling thread?

What is a replacement method for Task.Run in .NET 4.0 using C#?

How to create a task (TPL) running a STA thread?

ThreadPool.QueueUserWorkItem vs Task.Factory.StartNew

Should i use ThreadPools or Task Parallel Library for IO-bound operations

Simplest way to run three methods in parallel in C#

Task parallel library replacement for BackgroundWorker?

Deserialize JSON to Array or List with HTTPClient .ReadAsAsync using .NET 4.0 Task pattern

How can I prevent synchronous continuations on a Task?

Calling async methods from non-async code

What is the best way to catch exception in Task?