Johan

Results 27 comments of Johan

This question was not Nexus specific. It was about naming conventions used in wamp, and hence I think a valid question for here, although I agree that it might be...

I ran against this via #352. My 2ct: I agree with @GregRos. We should let the callee be able to finish the pending invocations while it unregistered the procedure, so...

I think we ran into a similar issue. We use shared registrations. Recently we had an incident that when we restarted a WAMP node that had such a shared RPC...

Also I was wondering which C# language features I could use... Is C# 7 or even 8 allowed?

Hi @darkl I think I have most of it, if not everything, in now to support IObservable return values on the callee side as well as on the caller side....

Yea I feel your pain, there's always lots of important stuff to do for us devs. No hurries 😊 About that final value thing. That bothered me too for a...

I don't understand what you mean... I assume you mean the _final_ return value? In case of observables the callee already omits its final return value right? Because `OnCompleted()` doesn't...

Here's my take on this: Wamp is able to multiplex multiple outstanding commands over a single TCP session. It is *not* able to multiplex the payload from multiple command responses,...

Hi. Just a thought that came up when reading this thread. When the [nullable-reference-types](https://blogs.msdn.microsoft.com/dotnet/2017/11/15/nullable-reference-types-in-csharp/) feature is turned on, `await?` should not be necessary anymore. `await` (without ?) could simply return...

Sorry, changed my mind. It should error out when using `await` on a `Task?`. Otherwise you cannot express that you don't want to wait on a nullable task when it...