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 .
()
| 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()); |
nothing calls this directly
no outgoing calls
no test coverage detected