MCPcopy Create free account
hub / github.com/grpc/grpc-java / keys

Method keys

api/src/main/java/io/grpc/Attributes.java:77–80  ·  view source on GitHub ↗

Returns set of keys stored in container. @return Set of Key objects. @deprecated This method is being considered for removal, if you feel this method is needed please reach out on this Github issue: grpc-java/issues/1764 .

()

Source from the content-addressed store, hash-verified

75 * <a href="https://github.com/grpc/grpc-java/issues/1764">grpc-java/issues/1764</a>.
76 */
77 @Deprecated
78 public Set<Key<?>> keys() {
79 return Collections.unmodifiableSet(data.keySet());
80 }
81
82 Set<Key<?>> keysForTest() {
83 return Collections.unmodifiableSet(data.keySet());

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected