|
|
@ -35,6 +35,7 @@ import com.alibaba.nacos.api.naming.pojo.Instance;
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.DisposableBean;
|
|
|
|
import org.springframework.beans.factory.ObjectProvider;
|
|
|
|
import org.springframework.beans.factory.ObjectProvider;
|
|
|
|
import org.springframework.cloud.client.discovery.event.HeartbeatEvent;
|
|
|
|
import org.springframework.cloud.client.discovery.event.HeartbeatEvent;
|
|
|
|
import org.springframework.context.ApplicationEventPublisher;
|
|
|
|
import org.springframework.context.ApplicationEventPublisher;
|
|
|
@ -45,8 +46,9 @@ import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @author xiaojing
|
|
|
|
* @author xiaojing
|
|
|
|
* @author yuhuangbin
|
|
|
|
* @author yuhuangbin
|
|
|
|
|
|
|
|
* @author pengfei.lu
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public class NacosWatch implements ApplicationEventPublisherAware, SmartLifecycle {
|
|
|
|
public class NacosWatch implements ApplicationEventPublisherAware, SmartLifecycle, DisposableBean {
|
|
|
|
|
|
|
|
|
|
|
|
private static final Logger log = LoggerFactory.getLogger(NacosWatch.class);
|
|
|
|
private static final Logger log = LoggerFactory.getLogger(NacosWatch.class);
|
|
|
|
|
|
|
|
|
|
|
@ -199,4 +201,8 @@ public class NacosWatch implements ApplicationEventPublisherAware, SmartLifecycl
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|
|
|
public void destroy() {
|
|
|
|
|
|
|
|
this.stop();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|