Results 11 comments of Beyond the lines

Definitely something I'd like to have. I was aware of the grpc-java implementation but wasn't sure of the stability of the api (you need to cast the `StreamObserver` into `ServerStreamObserver`...

That looks great! I'd be happy to see a PR to support back-pressure.

Hi @ktoso, yes that would be ideal but it shouldn't be too difficult to jump from reactive-streams to akka-streams. BTW do you guys have any plans for a grpc implementation...

I haven't look into sending a final status at the end of the stream but is it something that can be worked around using exception/error handling ? Something like: ```scala...

Thanks for pointing this out. https://github.com/btlines/grpcakkastream/pull/21 should solve it.

Thanks for the PR! The plugin approach certainly makes things easier on the user side. I leave this open for a few days to see what people think ... and...

I believe you missed the following import `cats.instances..option._` when you call `msg.toPB` ? If you `import cats.instances.option._` and then run your code it should be ok.

Not yet but I can look into when I find the time.

I doubt that the number of field is the problem here. I think that you have one (or several) fields that are not serialisable (from pbdirect's perspective at least).

Sorry for the late reply but I'm struggling to keep up with all these projects. This error occurs at compile time when the compiler performs the implicit resolution. I don't...