MyNatsClient and Exceptions
The Client [https://github.com/danielwertheim/mynatsclient] that I'm currently
building for NATS Server is based around IObservable
Daniel Wertheim
The Client [https://github.com/danielwertheim/mynatsclient] that I'm currently
building for NATS Server is based around IObservable
Daniel Wertheim
Just reached v0.7.0 of MyNatsClient [https://github.com/danielwertheim/mynatsclient] and focus has been on simplifying the usage of it. This means that the client now keeps track of subscriptions and auto-subscribes when the client gets connected or re-connected. It now also allows you to setup a su…
This is an update to my previous post "Comparing dynamic result extraction of a generic Task in C# [https://danielwertheim.se/comparing-dynamic-result-extraction-of-a-generic-task-in-c/]" in which I got a comment to extend the benchmarks with more data types as the dynamic call site caching would ge…
Have been working with some async in-process message routing lately and most recently request-and-response messaging pattern. There's a mediator that sits in between, and it only receives the result from the handler processing the requests as a Task. The actual implementation is a generic Task<> and…
I'm currently adding support for request-response message pattern in MyNatsClient [https://github.com/danielwertheim/mynatsclient]. And as it turns out, it's really simple, much thanks to having it being based around Observables and thereby supporting Reactive Extensions [http://reactivex.io/]. And…