JavaTM 2 Platform
Standard Ed. 6

javax.naming.ldap
接口 UnsolicitedNotificationListener

所有超级接口:
EventListener, NamingListener

public interface UnsolicitedNotificationListener
extends NamingListener

此接口用于处理 UnsolicitedNotificationEvent。“未经请求的通知”在 RFC 2251 中定义。它允许服务器将未经请求的通知发送到客户端。UnsolicitedNotificationListener 必须:

  1. 实现此接口及其方法
  2. 实现 NamingListener.namingExceptionThrown(),以便在尝试收集未经请求的通知事件期间抛出异常时得到通知。
  3. 使用 EventContextEventDirContext 中的 addNamingListener() 方法之一向上下文注册。对于 UnsolicitedNotificationListener 而言,这些方法只能使用 NamingListener 参数;其他参数都将被忽略。(如果它实现了其他侦听器接口的话这些参数可能适用)。

从以下版本开始:
1.3
另请参见:
UnsolicitedNotificationEvent, UnsolicitedNotification, EventContext.addNamingListener(javax.naming.Name, int, javax.naming.event.NamingListener), EventDirContext.addNamingListener(javax.naming.Name, java.lang.String, javax.naming.directory.SearchControls, javax.naming.event.NamingListener), EventContext.removeNamingListener(javax.naming.event.NamingListener)

方法摘要
 void notificationReceived(UnsolicitedNotificationEvent evt)
          当收到了未经请求的通知时调用。
 
从接口 javax.naming.event.NamingListener 继承的方法
namingExceptionThrown
 

方法详细信息

notificationReceived

void notificationReceived(UnsolicitedNotificationEvent evt)
当收到了未经请求的通知时调用。

参数:
evt - 非 null UnsolicitedNotificationEvent

JavaTM 2 Platform
Standard Ed. 6

提交错误或意见

版权所有 2008 Sun Microsystems, Inc. 保留所有权利。请遵守GNU General Public License, version 2 only