Replies: 1 comment
-
Good question. @tinaschrepfer may be able to answer your question as she contributed the RemoteTargets feature. It was added very particularly for LSP scenarios, so it may not be as generalizable to other scenarios as the rest of the library. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a middleman that has multiple connections to multiple clients, then this middleman has one connection to Server. I was assuming somehow notifications from server would work but it seems it is not. I am assuming jsonRPC in the middleman doesnt know how to route them(maybe?)
I am just confused how to make it work? For example assuming having 2 clients, I can see my
Subscribe(IObservable<int>)
being called two times (meaningclient1
andclient2
make calls and I see them inserver1
). Butserver1
invoking those observables does not end up on all of clients (client1 and client2) to recieve notifications. And middleman is the one which used RemoteTargets, meaningclient1
andclient2
are connected tomiddleman1
.middleman1
is connected toserver1
.Beta Was this translation helpful? Give feedback.
All reactions