()
| 258 | } |
| 259 | |
| 260 | @Override |
| 261 | public void shutdown() { |
| 262 | logger.log(XdsLogLevel.INFO, "Shutdown"); |
| 263 | if (resolveState != null) { |
| 264 | resolveState.shutdown(); |
| 265 | } |
| 266 | if (xdsClient != null) { |
| 267 | xdsClient = xdsClientPool.returnObject(xdsClient); |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | @VisibleForTesting |
| 272 | static Map<String, ?> generateServiceConfigWithMethodConfig( |
nothing calls this directly
no test coverage detected