multicasteventlistener.java

来自「这是一个以JAVA编写的程序,本人还没有试过,是一个简单的温度控制系统」· Java 代码 · 共 29 行

JAVA
29
字号
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 &copy; <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 + =
减小字号Ctrl + -
显示快捷键?