You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note the generated `io.grpc.examples.GreeterGrpc.GreeterImplBase` class that extends `io.grpc.BindableService`.(The generated classes were intentionally committed for demo purposes).
46
+
----
47
+
48
+
Note the generated `io.grpc.examples.GreeterGrpc.GreeterImplBase` class that extends `io.grpc.BindableService`.(The generated classes were intentionally committed for demo purposes).
41
49
42
50
All you need to do is to annotate your service implementation with `@org.lognet.springboot.grpc.GRpcService`
43
51
44
-
```java
52
+
[source,java]
53
+
----
45
54
@GRpcService
46
55
public static class GreeterService extends GreeterGrpc.GreeterImplBase{
47
56
@Override
@@ -51,12 +60,13 @@ All you need to do is to annotate your service implementation with `@org.lognet.
51
60
responseObserver.onCompleted();
52
61
}
53
62
}
54
-
```
63
+
----
64
+
65
+
== On the roadmap
55
66
56
-
## On the roadmap
57
-
* Customized gRPC server builder with compression/decompression registry, custom `Executor` service and transport security.
67
+
* Customized gRPC server builder with compression/decompression registry, custom `Executor` service and transport security.
0 commit comments