📄 spotterlistener.java
字号:
/* * Created on 23-Jun-2004 * */package org.placelab.spotter;import org.placelab.core.Measurement;/** * SpotterListener is the basic interface for receiving callbacks * from asynchronous Spotter operations. Callbacks are sent either * in the Spotter's thread, which may not be the same as the thread * in which the Spotter was started, or using the * {@link org.placelab.eventsystem.EventSystem} if * one is registered with the Spotter. */public interface SpotterListener { public void gotMeasurement(Spotter sender, Measurement m); public void spotterExceptionThrown(Spotter sender, SpotterException ex);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -