[Source]
# File drb/gw.rb, line 16 def initialize super() @hash = {} end
# File drb/gw.rb, line 21 def [](key) synchronize do @hash[key] end end
# File drb/gw.rb, line 27 def []=(key, v) synchronize do @hash[key] = v end end
[Validate]