Methods
#
N
Included Modules
Class Public methods
new()
# File ../ruby/lib/drb/gw.rb, line 16
def initialize
  super()
  @hash = {}
end
Instance Public methods
[](key)
# File ../ruby/lib/drb/gw.rb, line 21
def [](key)
  synchronize do
    @hash[key]
  end
end
[]=(key, v)
# File ../ruby/lib/drb/gw.rb, line 27
def []=(key, v)
  synchronize do
    @hash[key] = v
  end
end