Abhijit Sarkar
Abhijit Sarkar
> Is the intention just to have something shorter That, and also to show common client use cases like canceling the RPC call, and sending more requests in response to...
@jamesward If there's an example for BIDI streaming follow up, that'll be the most generic and cover all the other cases. For completeness sake, the a unary follow up may...
Most other Kotlin libraries have upgraded to 1.4, and using the latest of those with grpc-kotlin creates conflicts. I don't think it matters for the client what Kotlin version a...
@jamesward `NoSuchMethodError`, telltale sign of incompatible versions on the classpath. Usually, I was able to exclude the transitive dependencies and get it working, but it’s clunky (bunch of excludes), but...
@jamesward just checking on this. Recently, I was able to use a library compiled with Kotlin 1.4 and targeted for Java 8 in a Kotlin 1.3 client by excluding the...
I created an extension for JUnit 5, that does what the rule did, and more. https://github.com/asarkar/grpc-test
I'm little confused, are you saying there's a version of grpc-kotlin that targets Kotlin 1.4.x? I'm looking at the [release notes](https://github.com/grpc/grpc-kotlin/releases), and I'm not seeing anything to that effect. Or...
@marcphilipp Added to the "JUnit Jupiter Extensions" section.
@xmlking What is stopping you from using https://github.com/asarkar/grpc-test?
Not sure I understand how grpc-java would be allowed, but grpc-test wouldn't be, given both are available on Maven Central. Good luck.