We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28d304d commit 7b45f0aCopy full SHA for 7b45f0a
docs/en/client/getting-started.md
@@ -143,13 +143,12 @@ We recommended to inject (`@GrpcClient`) `Stub`s instead of plain `Channel`s.
143
> **Note:** There are different types of `Stub`s. Not all of them support all request types (streaming calls).
144
145
````java
146
-import example.HelloReply;
147
import example.HelloRequest;
148
-import example.MyServiceGrpc;
+import example.MyServiceGrpc.MyServiceBlockingStub;
149
150
-import io.grpc.stub.StreamObserver;
+import net.devh.boot.grpc.client.inject.GrpcClient;
151
152
-import net.devh.boot.grpc.server.service.GrpcService;
+import org.springframework.stereotype.Service;
153
154
@Service
155
public class FoobarService {
0 commit comments