From 3315d16f7cb15c9546fdea35cfbf8611c81246b8 Mon Sep 17 00:00:00 2001 From: David Cowden Date: Fri, 17 Nov 2017 11:08:49 -0800 Subject: [PATCH] core: update ManagedChannel docs (#3762) ManagedChannel now supports the getState/notifyWhenStateChanged API (#2292). --- core/src/main/java/io/grpc/ManagedChannel.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/core/src/main/java/io/grpc/ManagedChannel.java b/core/src/main/java/io/grpc/ManagedChannel.java index 1c89ca4414..21eed273a7 100644 --- a/core/src/main/java/io/grpc/ManagedChannel.java +++ b/core/src/main/java/io/grpc/ManagedChannel.java @@ -73,9 +73,6 @@ public abstract class ManagedChannel extends Channel { /** * Gets the current connectivity state. Note the result may soon become outdated. * - *

Warning: this API is not yet implemented by the gRPC library (issue on github). - * * @param requestConnection if {@code true}, the channel will try to make a connection if it is * currently IDLE * @throws UnsupportedOperationException if not supported by implementation @@ -92,9 +89,6 @@ public abstract class ManagedChannel extends Channel { * #getState}. If the states are already different, the callback will be called immediately. The * callback is run in the same executor that runs Call listeners. * - *

Warning: this API is not yet implemented by the gRPC library (issue on github). - * * @param source the assumed current state, typically just returned by {@link #getState} * @param callback the one-off callback * @throws UnsupportedOperationException if not supported by implementation