Sha256: 2d3fa5a9d97333c78c4d309323658b84abc1b2c23d0499c9387910f64b563a6c
Contents?: true
Size: 942 Bytes
Versions: 64
Compression:
Stored size: 942 Bytes
Contents
# encoding: ascii-8bit # Copyright 2014 Ball Aerospace & Technologies Corp. # All Rights Reserved. # # This program is free software; you can modify and/or redistribute it # under the terms of the GNU General Public License # as published by the Free Software Foundation; version 3 with # attribution addendums as found in the LICENSE.txt module Cosmos # Holds a cmd/tlm pair of packet log writers class PacketLogWriterPair # @return [PacketLogWriter] The comamnd log writer attr_reader :cmd_log_writer # @return [PacketLogWriter] The telemetry log writer attr_reader :tlm_log_writer # @param cmd_log_writer [PacketLogWriter] The command log writer # @param tlm_log_writer [PacketLogWriter] The telemetry log writer def initialize(cmd_log_writer, tlm_log_writer) @cmd_log_writer = cmd_log_writer @tlm_log_writer = tlm_log_writer end end # class PacketLogWriterPair end # module Cosmos
Version data entries
64 entries across 64 versions & 1 rubygems