class Orchestrator::Logic::Manager
Public Class Methods
new(*args)
click to toggle source
Calls superclass method
Orchestrator::Core::ModuleManager::new
# File lib/orchestrator/logic/manager.rb, line 4 def initialize(*args) super(*args) # Do we want to start here? # Should be ok. @thread.next_tick method(:start) end
Public Instance Methods
system(user = nil)
click to toggle source
Access to other modules in the same control system
# File lib/orchestrator/logic/manager.rb, line 13 def system(user = nil) ::Orchestrator::Core::SystemProxy.new(@thread, @settings.control_system_id, nil, user) end