Sha256: 611aad6226e198200c67c49141d7b9990442a19bc9e7decb9a0d1795a4a27c73
Contents?: true
Size: 469 Bytes
Versions: 34
Compression:
Stored size: 469 Bytes
Contents
# frozen_string_literal: true module DjiMqttConnect module Thing::Product class EventsReplyTopicRepository < TopicRepository # Publishes a message to gateway_sn on the "thing/product/+/events_reply" topic. def publish_to_device(gateway_sn, events_reply_message) publish_to_topic( "thing/product/#{gateway_sn}/events_reply", events_reply_message, marshal: EventsReplyMarshal ) end end end end
Version data entries
34 entries across 34 versions & 1 rubygems