OI4 / oi4-oec-service

An OI4-compliant base service covering most of the "mandatory" functionality by the development guideline
MIT License
2 stars 0 forks source link

Fixed calling of processMqttMessage #81

Closed chrfranz closed 2 years ago

chrfranz commented 2 years ago

The message-event of the MQTT-client provides information with the following signature: (topic: string, payload: Buffer, packet: IPublishPacket)

This was not compatible to the signature of the processMqttMessage method: processMqttMessage(topic: string, message: Buffer, builder: OPCUABuilder).

This pull request fixes the calling of the processMqttMessage method.