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

package com.phidgets.event;

/**
 * This interface represents a CurrentUpdateEvent. This event originates from the Phidget Motor Controller. This event is not supported by all Motor Controllers.
 * 
 * @author Phidgets Inc.
 */
public interface CurrentUpdateListener
{
	/**
	 * This method is called with every 8ms.
	 * 
	 * @param ae the event data object containing event data
	 */
	public void currentUpdated(CurrentUpdateEvent ae);
}