Environment
Confusion
the code below create a connectionMonitor instance, but Start method seems not called
@Override
protected <T> T doRefer(Class<T> serviceType, URL url) throws RpcException {
if (connectionMonitor == null) {
connectionMonitor = new ConnectionMonitor();
}
...
}
Environment
Confusion
the code below create a
connectionMonitorinstance, butStartmethod seems not called