Testing Smartthings sensors with some adjustments for 4th benchmark
[iot2.git] / benchmarks / other / ZigbeeTest / SmartthingsSensorCallback.java
1 // Checker annotations
2 //import iotchecker.qual.*;
3
4
5 /** Smartthings Sensor Callback for when a camera changes state (new frame available).
6  *
7  * @author      Rahmadi Trimananda <rtrimana @ uci.edu>, Changwoo Lee
8  * @version     1.0
9  * @since       2016-12-21
10  */
11
12 public interface SmartthingsSensorCallback {
13
14         //public void newReadingAvailable(@NonLocalRemote SmartthingsSensor _sensor) throws RemoteException;
15         public void newReadingAvailable(int _value, boolean _activeValue);
16 }