Class: OpenC3::TelemetryReducedHourTopic

Inherits:
Topic show all
Defined in:
lib/openc3/topics/telemetry_reduced_topics.rb

Class Method Summary collapse

Methods inherited from Topic

clear_topics, get_cnt, method_missing

Class Method Details

.write(target_name:, packet_name:, stored:, time:, data:, id: nil, scope:) ⇒ Object



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/openc3/topics/telemetry_reduced_topics.rb', line 46

def self.write(target_name:, packet_name:, stored:, time:, data:, id: nil, scope:)
  OpenC3.in_span("write") do
    # Write to stream
    msg_hash = {
      :time => time,
      :stored => stored.to_s,
      :target_name => target_name,
      :packet_name => packet_name,
      :json_data => data,
    }
    topic = "#{scope}__REDUCED_HOUR__{#{target_name}}__#{packet_name}"
    offset = Topic.write_topic(topic, msg_hash, id)
    return topic, offset
  end
end