Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in task-parallel-library

Are a .NET Task thread's resources returned back to the pool temporarily if the thread is waiting on an async operation to finish?

c# task multi-queue throttling

Is this a job for TPL Dataflow?

Using Task Parallel Library with Multiple Computers

How can I await an array of tasks and stop waiting on first exception?

How do I schedule a conditional ContinueWith

Does BoundedCapacity include items currently being processed in TPL Dataflow?

Thread.Sleep vs. Task.Delay when using timeBeginPeriod / Task scheduling

In C#, I am calling a public API, which has a API limit of 10 calls per second [closed]

How to properly use Task.ContinueWith?

c# lock and listen to CancellationToken

Why does this async / await code generate "...not all code paths return a value"?

C# async/await chaining with ConfigureAwait(false)

How to implement synchronous Task-returning method without warning CS1998?

Should methods returning Task<T> always start the returned task?

c# task-parallel-library

Why is the Task's Result property unavailable for non-generic Task (C# 4.0+)?

Retry policy within ITargetBlock<TInput>

Task.Delay for more than int.MaxValue milliseconds

Using the Task Parallel Library on an event-based asynchronous pattern

What is the best way for wrapping synchronous code into asynchronous method