Class EventDispatcher.AbstractEventListener
- java.lang.Object
-
- com.alibaba.nacos.config.server.utils.event.EventDispatcher.AbstractEventListener
-
- Direct Known Subclasses:
AsyncNotifyService,LongPollingService
- Enclosing class:
- EventDispatcher
public abstract static class EventDispatcher.AbstractEventListener extends Object
-
-
Constructor Summary
Constructors Constructor Description AbstractEventListener()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract List<Class<? extends EventDispatcher.Event>>interest()感兴趣的事件列表abstract voidonEvent(EventDispatcher.Event event)处理事件
-
-
-
Method Detail
-
interest
public abstract List<Class<? extends EventDispatcher.Event>> interest()
感兴趣的事件列表- Returns:
- event list
-
onEvent
public abstract void onEvent(EventDispatcher.Event event)
处理事件- Parameters:
event- event
-
-