Preparing files, stubs, and skeletons for 2nd benchmark
[iot2.git] / localconfig / iotpolicy / WeatherPhoneGateway / weathergatewaycallback.pol
1 public interface WeatherGatewayCallback {
2
3         public void informationRetrieved(double _inchesPerWeek, int _weatherZipCode, int _daysToWaterOn, double _inchesPerMinute);
4
5         capability Callback {
6                 description = "Callback method";
7                 method = "informationRetrieved(double _inchesPerWeek, int _weatherZipCode, int _daysToWaterOn, double _inchesPerMinute)";
8         }
9 }
10
11