datagramlistener.java
来自「手机无线网络纸牌游戏源代码。非常适合学习使用」· Java 代码 · 共 23 行
JAVA
23 行
// DatagramListener.java
//
// Copyright (c) 2000-2001 Symbian Ltd. All rights reserved
package com.symbian.devnet.whist.tokenRing;
/**
* Interface for receiving notification of incoming
* datagrams from a Receiver object.
* <P>
* Note: Runs in the context of the Receiver thread.
* @author Symbian Devnet
*/
interface DatagramListener extends java.util.EventListener
{
/** Method that must be implemented to receive DatagramEvents.
* @param the DatagramEvent classes implementing the DaragramListener
* interface are to be notified about
*/
public void DatagramReceived(DatagramEvent event);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?