Results 79 comments of ZHANG Dapeng

@ST-DDT **Solution:** Using the URL `https://github.com/grpc/grpc-java/tree/gh-pages/javadoc/` instead of `https://grpc.io/grpc-java/javadoc/` will work. **Edit**: the above solution is not working. ``` jdk-11.0.1/bin/javadoc -link 'https://github.com/grpc/grpc-java/tree/gh-pages/javadoc/' Test.java ``` The problem with `https://grpc.io/grpc-java/javadoc/` is that...

>I can confirm that using the other link it does not throw an error anymore. However it does not generate links to the grpc classes either (including jdk 8). Right,...

@ST-DDT Using jdk **11.0.2**, the issue is gone. ``` $ echo "/** See {@link io.grpc.Metadata}. */ public class Test {}" > Test.java $ ~/Downloads/jdk-11.0.2/bin/javadoc -link 'https://grpc.io/grpc-java/javadoc/' Test.java -cp ~/.m2/repository/io/grpc/grpc-core/1.19.0/grpc-core-1.19.0.jar Loading...

@aabmass Does it need add extra dependencies to `io.grpc:grpc-census`? Currently we only depend on `io.opencensus:opencensus-api` and `io.opencensus:opencensus-contrib-grpc-metrics`

>would you be open to a PR for this? @aabmass We would like to know why we/google cloud want this feature before making a PR. Would you send some more...

The warning is a known issue as fixed in https://github.com/grpc/grpc-java/pull/7771 which is available from v1.36.0. You can ignore the warning in v1.34.1, it's totally safe and won't cause any trouble....

If you want to make sure `futureStub.sayTwo(request)` gets executed before the server shutdown, you need to call `get()` method of the returned `Future` of it. ``` Future future = futureStub.sayTwo(request)`...

I don't know how you start server 2 (port 50051). Do you run another class's main method in another process? I see there is an infinite loop in `HelloworldServer2.main()`, how...

>some "futureStub.sayTwo(request);" in GreeterImpl.sayOne is canceled. Yes, the future can be cancelled if the `sayOne()` server call is completed. You would have seen the stack trace if you had added...