class DRb::GW
The GW provides a synchronized store for participants in the gateway to communicate.
Public Class Methods
# File lib/drb/gw.rb, line 50 def initialize super() @hash = {} end
Creates a new GW
Calls superclass method MonitorMixin.new
Public Instance Methods
# File lib/drb/gw.rb, line 57 def [](key) synchronize do @hash[key] end end
Retrieves key
from the GW
# File lib/drb/gw.rb, line 65 def []=(key, v) synchronize do @hash[key] = v end end
Stores value v
at key
in the GW
Ruby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.