使用 fabric8io kubernetes-client;是否可以删除 [custom] 观察者?

Using fabric8io kubernetes-client; is it possible to remove a [custom] watcher?

观察者:

private final class CustomKubeWatcher implements Watcher<Pod> { ... }

添加使用:

kubeClient.pods().inNamespace(kubeNamespace).watch(customKubeWatcher);

如何停止观察者?当我的客户端实例被 GC 时,它会被清理吗?

https://github.com/fabric8io/kubernetes-client

除非我遗漏了什么,否则 watch() 会 return 一个 Watch object, which can be closed