https://github.com/i-e-b/monitorasync
A simple C# example of waiting for async events in distributed systems
https://github.com/i-e-b/monitorasync
experimental working
Last synced: over 1 year ago
JSON representation
A simple C# example of waiting for async events in distributed systems
- Host: GitHub
- URL: https://github.com/i-e-b/monitorasync
- Owner: i-e-b
- License: bsd-3-clause
- Created: 2019-03-27T13:55:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-27T15:20:28.000Z (over 7 years ago)
- Last Synced: 2025-01-27T12:11:16.709Z (over 1 year ago)
- Topics: experimental, working
- Language: C#
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MonitorAsync
A simple C# example of waiting for async events in distributed systems
## Concept
If you have a distributed messaging system, and you want to do some rare RPC patterned calls, you probably end up with an incoming replies queue, and the ability to send RFC messages.
This is a quick sketch of how to handle the waiting-for-reply part using C# async/await and Tasks.
