- 所有超级接口:
-
EventListener
,NamingListener
此接口用于处理
UnsolicitedNotificationEvent
。"未经请求的通知"在RFC 2251中定义。它允许服务器向客户端发送未经请求的通知。一个UnsolicitedNotificationListener
必须:
- 实现此接口及其方法
- 实现
NamingListener.namingExceptionThrown()
,以便在尝试收集未经请求的通知事件时通知抛出的异常。 - 使用
EventContext
或EventDirContext
中的addNamingListener()
方法之一向上下文注册。这些方法中只有NamingListener
参数适用;其余参数对于UnsolicitedNotificationListener
是被忽略的。(如果实现其他监听器接口,则这些参数可能适用于监听器)。
- 自 JDK 版本:
- 1.3
- 参见:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
当接收到未经请求的通知时调用。Methods declared in interface javax.naming.event.NamingListener
namingExceptionThrown
-
Method Details
-
notificationReceived
当接收到未经请求的通知时调用。- 参数:
-
evt
- 非空的UnsolicitedNotificationEvent
-