Lars Hvam
Lars Hvam
methods: connect publish subscribe unsubscribe ping disconnect receive, inputs: timeout? how to wait? detached?
**MQTT** https://en.wikipedia.org/wiki/MQTT http://docs.oasis-open.org/mqtt/mqtt/v3.1.1/mqtt-v3.1.1.html https://github.com/mqttjs/mqtt-packet https://github.com/mqtt/mqtt.github.io/wiki/public_brokers http://www.mqtt-dashboard.com/ https://blogs.sap.com/2018/07/16/sap-hana-express-edition-sps03-revision-31-available-for-download/

how to avoid errors - copy and rename - cross check
- "this is not git" - "preserving the advantages of using classic CTS" - feature branch based development - feature branches are deleted after merge to main - all feature...
Hi Marcello, class cl_aunit_assert is obsolete
in below, it only throws `cx_uuid_error`, ie. never hitting `catch cx_static_check` ```abap TRY. ls_data-id = to_lower( cl_system_uuid=>if_system_uuid_rfc4122_static~create_uuid_c36_by_version( version = 4 ) ). CATCH cx_uuid_error ##no_handler. CATCH cx_static_check ##no_handler. ENDTRY. ```
NEEDED can be removed ```abap DATA(lv_bar) = zcl=>someting( ) ##NEEDED. lv_bar = ls_meta-bar. ```