Search code examples
Best way in .NET to manage queue of tasks on a separate (single) thread...


c#.netasynchronousconcurrencytask-parallel-library

Read More
What does MaxDegreeOfParallelism do?...


c#concurrencyparallel-processingtask-parallel-libraryparallel.foreach

Read More
Calling TaskCompletionSource.SetResult in a non blocking manner...


c#multithreadingasynchronoustask-parallel-libraryasync-await

Read More
What is the best way to call API calls in parallel in .NET Core, C#?...


c#asp.net-coreparallel-processingtask-parallel-library

Read More
How to run BackgroundService by counter using Task?...


c#.net-coretask-parallel-librarybackground-service

Read More
Associate a CancellationToken with an async method's Task...


c#async-awaittask-parallel-librarycancellation-token

Read More
How does cancellation acknowledgment work for async continuations?...


c#.netasync-awaittask-parallel-librarycancellation-token

Read More
Is it better to return an empty task or null? c#...


c#tasktask-parallel-library

Read More
Is it safe to put TryDequeue in a while loop?...


c#task-parallel-libraryconcurrent-queue

Read More
Why task's status is Faulted instead of Canceled?...


c#tasktask-parallel-library.net-8.0

Read More
TPL data block with multiple inputs that can time out...


c#.net-coretask-parallel-library

Read More
TPL ActionBlock not handling messages after an exception...


c#.net-coretask-parallel-librarytpl-dataflow

Read More
"The calling thread must be STA" workaround...


wpfmultithreadingtask-parallel-librarydispatchersta

Read More
Getting return values from Task.WhenAll...


c#task-parallel-libraryasync-await

Read More
Process ZipArchive entries in parallel...


.netmultithreadingziptask-parallel-libraryparallel.foreach

Read More
Ignore task exception in ContinueWith...


c#tasktask-parallel-librarycontinuewith

Read More
Why the catch block of AggregateException was not sufficient to handle cancellations?...


c#tasktask-parallel-librarycancellation-tokenc#-12.0

Read More
How do I listen to TPL TaskStarted/TaskCompleted ETW events...


c#.nettask-parallel-libraryetw

Read More
SynchronizationContext, when does it flow and when does it not?...


c#asynchronoustask-parallel-librarysynchronizationcontext

Read More
Different exception handling between Task.Run and Task.Factory.StartNew...


c#exceptiontask-parallel-librarytaskfactory

Read More
Is there a way to run an async method as a LongRunning task?...


c#async-awaittask-parallel-library

Read More
Increase performance async Parallel.Foreach...


c#multithreadingperformancetask-parallel-libraryparallel.foreach

Read More
ForEachAsync with Result...


c#asynchronousconcurrencytask-parallel-libraryparallel.foreachasync

Read More
Unwrapping IObservable<Task<T>> into IObservable<T> with order preservation...


c#task-parallel-library.net-4.5system.reactiverx.net

Read More
Why is Task.Wait() causing application to freeze...


c#async-awaittask-parallel-library

Read More
How should cancellation tokens be used in IHostedService?...


c#asp.net-coretask-parallel-library

Read More
Task.WaitAll AggregateException handling...


c#task-parallel-library

Read More
Getting the method name of a task...


c#tasktask-parallel-library

Read More
Why isn't Task.WhenAll waiting until completion?...


c#linqasync-awaittasktask-parallel-library

Read More
How to prevent to create more threads than the available number of hardware threads?...


c#.netmultithreadingtask-parallel-library

Read More
BackNext