Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in async-await

Strange execution jump when using async/await and System.Threading.Tasks.Parallel

How to buffer a burst of events into fewer resulting actions

c# async-await

How to create a Task which always yields?

How to get exactly result from async methods via await without Task.Result?

c# async-await

Unit tests and multiple async tasks

How to do transactions in python with asyncio and postgres?

Using ConfigureAwait(false) for private async methods?

c# async-await

Chaining async functions?

How to await for one task on two different threads?

If it's possible to write our own awaitables, then why can async methods only return Task<T>, Task and void?

Does Task.ConfigureAwait(false) on the last method line affect anything?

WaitAll vs WaitAny

Under what circumstances will awaiting a cancelled task throw TaskCanceledException?

c# async-await

UWP - What happens if navigating away from page while async/await is running?

c# uwp async-await

Async Await in F#

.net f# async-await c#-to-f#

jQuery proxy doesn't call async functions

Using Promise with async/await

async/await behaviour of mongoose findById

Convert existing C# synchronous method to asynchronous with async/await?

Is it OK to return from an async method before the final await?

c# asynchronous async-await