spotterlistener.java
来自「一个基于PlaceLab的室内和室外的智能导航系统」· Java 代码 · 共 21 行
JAVA
21 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?