Sha256: 0d73aa64fe4c1c8003ffb01a36c2d6fa9bb23a06cba40c72fc775d60abd61f92
Contents?: true
Size: 1.54 KB
Versions: 9
Compression:
Stored size: 1.54 KB
Contents
# encoding: ascii-8bit # Copyright 2022 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 Affero General Public License # as published by the Free Software Foundation; version 3 with # attribution addendums as found in the LICENSE.txt # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # Modified by OpenC3, Inc. # All changes Copyright 2022, OpenC3, Inc. # All Rights Reserved # # This file may also be used under the terms of a commercial license # if purchased from OpenC3, Inc. require 'openc3' require 'openc3/bridge/bridge_config' require 'openc3/bridge/bridge_interface_thread' require 'openc3/bridge/bridge_router_thread' module OpenC3 class Bridge def initialize(filename) @config = BridgeConfig.new(filename) @threads = [] # Start Interface Threads @config.interfaces.each do |interface_name, interface| @threads << BridgeInterfaceThread.new(interface) @threads[-1].start end # Start Router Threads @config.routers.each do |router_name, router| @threads << BridgeRouterThread.new(router) @threads[-1].start end at_exit() do shutdown() end end def shutdown @threads.each do |thread| thread.stop end end end end
Version data entries
9 entries across 9 versions & 1 rubygems