Porting and compiling SmartLightsController
[iot2.git] / benchmarks / SmartLightsController / MotionDetectionCallback.java
1 package SmartLightsController;
2
3 /** Interface MotionDetectionCallback for allowing callbacks from the MotionDetection class.
4  *
5  *
6  * @author      Ali Younis <ayounis @ uci.edu>
7  * @version     1.0
8  * @since       2016-03-21
9  */
10
11 import java.rmi.Remote;
12 import java.rmi.RemoteException;
13
14 public interface MotionDetectionCallback extends Remote {
15
16         /** Callback method for when motion is detected.
17          *
18          *   @param _md [MotionDetection].
19          *
20          *   @return [void] None.
21          */
22         public void motionDetected(MotionDetection _md) throws RemoteException;
23 }