Nadav Samet
Nadav Samet
Thanks for the quick response, Adam. Since `inverse` has a different meaning in algebra, consider renaming the trait to some opposite of `combine`, perhaps `Subtract` or something like that.
Hey, thanks for contributing to this - it would be really nice to add something like this. It would have been even better if the client-side would use zio-grpc too....
Hey Boris, agree that having a native JS (not Scala.js) example is worthwhile. I'll review in more detail later this month. Appreciate this contribution!
Hi @alexdupre , if you want a single channel/client to live for the entire app, you can: 1. [Recommended: create the client at the top level as a layer using...
A single channel can represent a set of underlying TLS connections that change over time, see [Java docs](https://grpc.github.io/grpc-java/javadoc/io/grpc/Channel.html). You can implement your own Channel interface that switches between servers as...
Thanks for opening this issue. What would be the expected change to resolve this? Possibly one of: 1. Fix the client example to demonstrate the types in play and how...
Thanks for sending the request. Does the new behavior match the behavior of grpc-java?
@oridag can you point out to the code in grpc-java that indicates that's the case so we can merge this PR with confidence? I see one of the tests failed....
Thanks for reporting! Looks like something that should be fixed. Could you provide a minimal example of this error through a PR that adds a unit test under the e2e...
Yes, we use tests also for compile-time, to make sure the APIs work as intended, and implicits can be found in the scenarios we want to support. This also helps...