📄 datagramlistener.java
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -