class DRb::GW
The GW
provides a synchronized store for participants in the gateway to communicate.
Public Class Methods
Public Instance Methods
Source
# File lib/drb/gw.rb, line 58 def [](key) synchronize do @hash[key] end end
Retrieves key
from the GW
Source
# File lib/drb/gw.rb, line 66 def []=(key, v) synchronize do @hash[key] = v end end
Stores value v
at key
in the GW