Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in task-parallel-library

How to implement an efficient WhenEach that streams an IAsyncEnumerable of task results?

How do I write a scalable socket server using C# 4.0?

Create but not start a task with a custom task factory?

c# task-parallel-library

Cancelling tasks in the Dispose method

CancellationToken and CancellationTokenSource-How to use it?

MaxDegreeOfParallelism deciding on optimal value

How to check that all tasks have been properly completed?

Event on Task Result is done [duplicate]

How do I set the user identity for tasks when calling Task.WaitAll()?

How can I produce a Task<Task> to Unwrap

Why Task.Factory.StartNew returns immediately while Task.Run does not?

c# 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