Guest User

Untitled

a guest
Jul 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #=> irb
  2. require 'drb'
  3. #=> true
  4. $ts = DRbObject.new_with_uri('druby://localhost:12345')
  5. #=> #<DRb::DRbObject:0x10136d740 @uri="druby://localhost:12345", @ref=nil>
  6. $ts.write(["message", "Hello, world!"])
  7. #=> #<DRb::DRbObject:0x10135e060 @uri="druby://127.0.0.1:12345", @ref=2152218120>
  8. $ts.take(["message",nil])
  9. #=> ["message", "Hello, world!"]
Add Comment
Please, Sign In to add comment