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