eventhandler.java
来自「很棒的web服务器源代码」· Java 代码 · 共 16 行
JAVA
16 行
// EventHandler.java// $Id: EventHandler.java,v 1.2 1998/01/22 13:09:59 bmahe Exp $// (c) COPYRIGHT MIT and INRIA, 1996.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.tools.timers; public interface EventHandler { /** Handle an timer event. Data is the rock the register wanted passed to the handleEvent routine, and time is the time the event was scheduled to be delivered. The handler can compare that time to the current time, if it wants, to see whether or not it's falling behind. */ void handleTimerEvent(Object data, long time); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?