aboutsummaryrefslogtreecommitdiffstats
path: root/Java/com/phidgets/event/SensorUpdateListener.java
blob: 5c491cc2fdccdfc12d3f23a17b321d6883b22d9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright 2011 Phidgets Inc.  All rights reserved.
 */

package com.phidgets.event;
/**
 * This interface represents a SensorUpdateEvent. This event originates from the Phidget Motor Control
 * 
 * @author Phidgets Inc.
 */
public interface SensorUpdateListener
{
	/**
	 * This method is called with the event data every 8ms.
	 * 
	 * @param ae the event data object containing event data
	 */
	public void sensorUpdated(SensorUpdateEvent ae);
}