Object
The GW provides a synchronized store for participants in the gateway to communicate.
Creates a new GW
# File drb/gw.rb, line 50 def initialize super() @hash = {} end
Retrieves key from the GW
key
# File drb/gw.rb, line 57 def [](key) synchronize do @hash[key] end end
Stores value v at key in the GW
v
# File drb/gw.rb, line 65 def []=(key, v) synchronize do @hash[key] = v end end
This page was generated for Ruby 3.1.2
Ruby-doc.org is a service of James Britt and Neurogami, an erratic source of art, music, and technology.
Generated with Ruby-doc Rdoc Generator 0.42.0.