Class: DRbFileServer
- Inherits:
-
Object
- Object
- DRbFileServer
- Defined in:
- lib/drb_fileserver.rb
Defined Under Namespace
Classes: FileX
Instance Method Summary collapse
-
#initialize(host: 'localhost', port: '61010', path: '.') ⇒ DRbFileServer
constructor
A new instance of DRbFileServer.
- #start ⇒ Object
Constructor Details
#initialize(host: 'localhost', port: '61010', path: '.') ⇒ DRbFileServer
Returns a new instance of DRbFileServer.
135 136 137 138 139 140 |
# File 'lib/drb_fileserver.rb', line 135 def initialize(host: 'localhost', port: '61010', path: '.') @host, @port = host, port @file = FileX.new path end |
Instance Method Details
#start ⇒ Object
142 143 144 145 146 147 |
# File 'lib/drb_fileserver.rb', line 142 def start() DRb.start_service "druby://#{@host}:#{@port}", @file DRb.thread.join end |