Fixing bugs for multiple callback inputs; adding more testcases
[iot2.git] / benchmarks / interfaces / WeatherGatewaySmartCallback.java
1 package iotcode.interfaces;
2
3 import java.util.List;
4 import java.util.ArrayList;
5
6 public interface WeatherGatewaySmartCallback {
7
8         public void informationRetrieved(double _inchesPerWeek, int _weatherZipCode, int _daysToWaterOn, double _inchesPerMinute);
9 }