Updated comment

This commit is contained in:
Ziver Koc 2020-06-22 14:13:57 +02:00
parent 2242401977
commit 659d5ea0d2
2 changed files with 6 additions and 0 deletions

View file

@ -1,5 +1,8 @@
package se.hal.intf;
/**
* Listener to be called by the {@link HalEventController} to report that a event has been received.
*/
public interface HalEventReportListener {
void reportReceived(HalEventConfig e, HalEventData d);

View file

@ -1,5 +1,8 @@
package se.hal.intf;
/**
* Listener to be called by the {@link HalSensorController} to report that sensor data has been received.
*/
public interface HalSensorReportListener {
void reportReceived(HalSensorConfig s, HalSensorData d);