-
Other languages like C# have this. What is the equivalent in cppcoro ?
-
### Is there an existing issue for this?
- [x] I have searched the existing issues
### Describe the bug
Hello, I'm trying to create a TaskCompletionSource chain in Blazor Server app. Each ```TCS.Ta…
-
I think at minimum, this advice should be clarified in two ways: example improved to actually show how a deadlock or other adversity can happen (example just shows when it'll run on the same thread, n…
-
When I try to write a DataTable to the user with the WriteToServer, I receive the the following exception:
```
Unhandled exception. Microsoft.Data.SqlClient.SqlException (0x80131904): INSERT is not a…
-
TaskCompletionSource doesn't have a ctor that takes a TaskContinuationOptions... it has a ctor that takes a TaskCreationOptions, and one that takes object. So it is easy to accidentally pass TaskConti…
-
### Description
TaskCompletionSource has more than 0.5 ms latency to signal its Task's completion. Considering it is a fundamental construct, such latency is much larger than what i expect. Am I do…
-
The call to `await Task.Delay(-1, cts.Token)` throws and exception of type `TaskCancelledException`, so the line `Console.WriteLine("Exiting...");` is never executed and the program is finalized with …
-
When waiting for a TaskCompletionSource in an async request handler it seems that all other requests are blocked until the TaskCompletionSource is completed.
Reproducer (tested with SelfHost):
`…
-
Hey Rob!
My app takes a screenshot of multiple selected windows every 30 seconds in a loop.
The way the screenshots are taken is by using this service -
```cs
public class ScreenshotService…
-
## Steps to Reproduce
cs
```c#
private static async Task RunOnThread(Func f)
{
var tcs = new TaskCompletionSource();
var t = new Thread(() =>
…
0x53A updated
4 years ago