stumblerfunnelupdatelistener.java
来自「这是一款基于PlaceLab软件开发的导航系统中间件的客户端程序.」· Java 代码 · 共 23 行
JAVA
23 行
package org.placelab.stumbler;import java.util.Hashtable;/** * After the StumblerFunnel pulses, it shoots out updates to all of its updateListeners * with a Hashtable where StumblerSpotters key to Vectors of MeasurementPackages * */public interface StumblerFunnelUpdateListener { /** * This message is sent after every StumblerFunnel has new data available * Note that this callback is sent in the thread that the StumblerUpdateListener used to * subscribe itself to the StumblerFunnel. * @param measurements updates each StumblerSpotter keys to its MeasurementPackages * for this update. */ public void stumblerUpdated(Hashtable measurements); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?