Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in task-parallel-library

Throwing exceptions from ContinueWith

Is it advantageous to use ConfigureAwait(false) in a library that directly returns a Task from a call to another library?

Parallel Operation Batching

Limiting the number of simultaneously executing tasks

How to cancel a task that is waiting with a timeout without exceptions being thrown

When should a task be considered "long running"?

C# async tasks in a queue or waiting list

How to use C#8 IAsyncEnumerable<T> to async-enumerate tasks run in parallel

What is the difference between Dispatcher.BeginInvoke and Task.Factory.StartNew

Parallel.For using step != 1

Parallel.Invoke() without waiting on execution to finish

What is the difference in .NET between developing a multithreaded application and parallel programming?

F# - Convert Task<unit> to plain Task

Using a hashtable inside a Parallel.ForEach?

Where is the return statement in async/await

Wait for request of CancellationToken cancellation

Synchronous implementation of interface that returns Task

What do I return from a method that returns just Task and not Task<T>?

C# TPL how to know that all tasks are done?