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 ed4cc89 commit 2be568dCopy full SHA for 2be568d
core/src/main/java/io/grpc/util/MutableHandlerRegistry.java
@@ -31,13 +31,12 @@
31
import javax.annotation.concurrent.ThreadSafe;
32
33
/**
34
- * Default implementation of {@link MutableHandlerRegistry}.
+ * Default implementation of {@link HandlerRegistry}.
35
*
36
* <p>Uses {@link ConcurrentHashMap} to avoid service registration excessively
37
* blocking method lookup.
38
*/
39
@ThreadSafe
40
-@ExperimentalApi("https://github.com/grpc/grpc-java/issues/933")
41
public final class MutableHandlerRegistry extends HandlerRegistry {
42
private final ConcurrentMap<String, ServerServiceDefinition> services
43
= new ConcurrentHashMap<>();
0 commit comments