The GW
provides a synchronized store for participants in the gateway to communicate.
Methods
- #
-
- N
-
Included Modules
Class Public methods
Instance Public methods
Retrieves key
from the GW
Source:
show
| on GitHub
def [](key)
synchronize do
@hash[key]
end
end
[]=(key, v)
Link
Stores value v
at key
in the GW
Source:
show
| on GitHub
def []=(key, v)
synchronize do
@hash[key] = v
end
end