@@ -5,7 +5,7 @@ import _root_.cats.syntax.all._
55/** TestService: Example gRPC service used in e2e tests
66 * It demonstrates all four RPC shapes.
77 */
8- trait TestServiceFs2GrpcCtxAsImplicitParamTrailers [F[_], A] {
8+ trait TestServiceFs2GrpcRenderContextAsImplicitTrailers [F[_], A] {
99 /** Unary RPC: no streaming in either direction
1010 */
1111 def noStreaming(request: hello.world.TestMessage)(implicit ctx: A): F[(hello.world.TestMessage, _root_.io.grpc.Metadata)]
@@ -20,7 +20,7 @@ trait TestServiceFs2GrpcCtxAsImplicitParamTrailers[F[_], A] {
2020 def bothStreaming(request: _root_.fs2.Stream[F, hello.world.TestMessage])(implicit ctx: A): _root_.fs2.Stream[F, hello.world.TestMessage]
2121}
2222
23- object TestServiceFs2GrpcCtxAsImplicitParamTrailers extends _root_.fs2.grpc.GeneratedCompanion[TestServiceFs2GrpcCtxAsImplicitParamTrailers ] {
23+ object TestServiceFs2GrpcRenderContextAsImplicitTrailers extends _root_.fs2.grpc.GeneratedCompanion[TestServiceFs2GrpcRenderContextAsImplicitTrailers ] {
2424
2525 def serviceDescriptor: _root_.io.grpc.ServiceDescriptor = hello.world.TestServiceGrpc.SERVICE
2626
@@ -29,7 +29,7 @@ object TestServiceFs2GrpcCtxAsImplicitParamTrailers extends _root_.fs2.grpc.Gene
2929 channel: _root_.io.grpc.Channel,
3030 clientAspect: _root_.fs2.grpc.client.ClientAspect[F, G, A],
3131 clientOptions: _root_.fs2.grpc.client.ClientOptions
32- ): TestServiceFs2GrpcCtxAsImplicitParamTrailers [F, A] = new TestServiceFs2GrpcCtxAsImplicitParamTrailers [F, A] {
32+ ): TestServiceFs2GrpcRenderContextAsImplicitTrailers [F, A] = new TestServiceFs2GrpcRenderContextAsImplicitTrailers [F, A] {
3333 def noStreaming(request: hello.world.TestMessage)(implicit ctx: A): F[(hello.world.TestMessage, _root_.io.grpc.Metadata)] =
3434 clientAspect.visitUnaryToUnaryCallTrailers[hello.world.TestMessage, hello.world.TestMessage](
3535 _root_.fs2.grpc.client.ClientCallContext(ctx, hello.world.TestServiceGrpc.METHOD_NO_STREAMING),
@@ -58,7 +58,7 @@ object TestServiceFs2GrpcCtxAsImplicitParamTrailers extends _root_.fs2.grpc.Gene
5858
5959 protected def serviceBindingFull[F[_], G[_]: _root_.cats.effect.Async, A](
6060 dispatcher: _root_.cats.effect.std.Dispatcher[G],
61- serviceImpl: TestServiceFs2GrpcCtxAsImplicitParamTrailers [F, A],
61+ serviceImpl: TestServiceFs2GrpcRenderContextAsImplicitTrailers [F, A],
6262 serviceAspect: _root_.fs2.grpc.server.ServiceAspect[F, G, A],
6363 serverOptions: _root_.fs2.grpc.server.ServerOptions
6464 ) = {
0 commit comments