Sha256: e25417da234430996eeaf2f2404a05c6c467ca1dcf87074bc25a53afa05ce187
Contents?: true
Size: 860 Bytes
Versions: 1
Compression:
Stored size: 860 Bytes
Contents
# frozen_string_literal: true module DjiMqttConnect module Sys::Product class StatusTopicRepository < TopicRepository STATUS_TOPIC_REGEX = /\Asys\/product\/(?<device_identifier>.+)\/status\z/ def listen! listen_to_topic("sys/product/+/status") do |topic, raw_message| logger.debug(raw_message) matched_topic = STATUS_TOPIC_REGEX.match(topic) raise Error, "Unknown topic: #{topic}" unless matched_topic device_identifier = matched_topic[:device_identifier] message = status_marshal.load(raw_message) logger.info("Received #{message} from #{device_identifier}") broadcast(message._method.to_sym, device_identifier, message) end end private def status_marshal @status_marshal ||= StatusMarshal.new end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dji_mqtt_connect-0.1.0 | lib/dji_mqtt_connect/topics/sys/product/status.rb |