📄 multicasteventlistener.java
字号:
package net.sf.dz.pnp;/** * A multicast event listener. * * <p> * * At this point, the notion of a multicast event is not yet finalized, so * it is currently defined as <code>java.lang.Object</code>. * * @author Copyright © <a href="mailto:vt@freehold.crocodile.org">Vadim Tkachenko</a> 2004 * @version $Id: MulticastEventListener.java,v 1.2 2004/06/28 20:35:49 vtt Exp $ */public interface MulticastEventListener { /** * Receive an event notification. * * @param source Multicast client that originally received the notification. * * @param event The notification object. * * @exception Any exception that may have been thrown by the listener. * The caller of this method is responsible for handling all the * exceptions that may have been thrown. */ public void multicastEventReceived(MulticastClient source, MulticastEvent event) throws Throwable;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -