class DrbServer
Constants
- URI
Public Class Methods
new(front_object)
click to toggle source
# File managables/programs/game_aided_manufacturing/lib/drb_server.rb, line 6 def initialize(front_object) @front_object = front_object end
Public Instance Methods
start()
click to toggle source
# File managables/programs/game_aided_manufacturing/lib/drb_server.rb, line 10 def start DRb.start_service(URI, @front_object) end