Preparing files, stubs, and skeletons for 2nd benchmark
[iot2.git] / benchmarks / interfaces / WeatherGatewayCallback.java
1 package iotcode.interfaces;
2
3 import java.util.List;
4 import java.util.ArrayList;
5
6 public interface WeatherGatewayCallback {
7         public void informationRetrieved(double _inchesPerWeek, int _weatherZipCode, int _daysToWaterOn, double _inchesPerMinute);
8 }