Demo console app - issue with stream not progressing (different issue) #53
-
resolved |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Unfortunately I don't have enough context to help you out with this right now. If you want to provide it as a gist, please make sure to name the file with the |
Beta Was this translation helpful? Give feedback.
-
Your code in (I guess) the console app ... await Setup();
Subscribe(); // not awaited
ExitEvent.WaitOne(); ... is wrong. The This works: await Setup();
await Subscribe(); Your usage of async/await somehow produces a dead-lock. |
Beta Was this translation helpful? Give feedback.
Your code in (I guess) the console app ...
... is wrong. The
// not awaited
part is wrong.This works:
Your usage of async/await somehow produces a dead-lock.