use of org.eclipse.smarthome.binding.homematic.internal.communicator.parser.EventParser in project smarthome by eclipse.
the class RpcResponseHandler method handleEvent.
/**
* Populates the extracted event to the listener.
*/
private T handleEvent(Object[] message) throws IOException {
EventParser eventParser = new EventParser();
HmDatapointInfo dpInfo = eventParser.parse(message);
listener.eventReceived(dpInfo, eventParser.getValue());
return getEmptyStringResult();
}
Aggregations