Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in task-parallel-library

The difference between Task.Factory.FromAsync and BeginX/EndX?

Efficient signaling Tasks for TPL completions on frequently reoccuring events

Parallel.ForEach Misbehaviour [duplicate]

Thread safety of yield return with Parallel.ForEach()

Can ConfigureAwait(false) in a library lose the synchronization context for the calling application?

Windows Service running Async code not waiting on work to complete

Where to use concurrency when calling an API

Task.Faulted and Task.Exception

Calling an async method using a Task.Run seems wrong?

Restart a task or create a new one?

'WaitFor' an observable

Analogue of Queue.Peek() for BlockingCollection when listening to consuming IEnumerable<T>

AggregateException is throwing while waiting for PostAsJsonAsync

How can BlockingCollection(T).GetConsumingEnumerable() throw OperationCanceledException?

c# task-parallel-library

Can the .NET 4 Task Parallel Library use COM objects?

Parallel HTTP requests using System.Net.Http.HttpClient

Can/should Task<TResult> be wrapped in a C# 5.0 awaitable which is covariant in TResult?

Capturing Exceptions on async operations

Send multiple WebRequest in Parallel.For

Chaining two functions () -> Task<A> and A->Task<B>