Class: Rinda::TupleSpaceProxy
Relationships & Source Files | |
Inherits: | Object |
Defined in: | lib/rinda/rinda.rb |
Overview
TupleSpaceProxy
allows a remote Tuplespace to appear as local.
Class Method Summary
-
.new(ts) ⇒ TupleSpaceProxy
constructor
Creates a new
TupleSpaceProxy
to wrapts
.
Instance Method Summary
-
#notify(ev, tuple, sec = nil)
Registers for notifications of event
ev
on the proxied TupleSpace. -
#read(tuple, sec = nil, &block)
Reads
tuple
from the proxied TupleSpace. -
#read_all(tuple)
Reads all tuples matching
tuple
from the proxied TupleSpace. -
#take(tuple, sec = nil, &block)
Takes
tuple
from the proxied TupleSpace. -
#write(tuple, sec = nil)
Adds
tuple
to the proxied TupleSpace.
Constructor Details
.new(ts) ⇒ TupleSpaceProxy
Creates a new TupleSpaceProxy
to wrap ts
.
# File 'lib/rinda/rinda.rb', line 258
def initialize(ts) @ts = ts end
Instance Method Details
#notify(ev, tuple, sec = nil)
Registers for notifications of event ev
on the proxied TupleSpace. See TupleSpace#notify
# File 'lib/rinda/rinda.rb', line 297
def notify(ev, tuple, sec=nil) @ts.notify(ev, tuple, sec) end
#read(tuple, sec = nil, &block)
Reads tuple
from the proxied TupleSpace. See TupleSpace#read.
# File 'lib/rinda/rinda.rb', line 281
def read(tuple, sec=nil, &block) @ts.read(tuple, sec, &block) end
#read_all(tuple)
Reads all tuples matching tuple
from the proxied TupleSpace. See TupleSpace#read_all.
# File 'lib/rinda/rinda.rb', line 289
def read_all(tuple) @ts.read_all(tuple) end
#take(tuple, sec = nil, &block)
Takes tuple
from the proxied TupleSpace. See TupleSpace#take.
#write(tuple, sec = nil)
Adds tuple
to the proxied TupleSpace. See TupleSpace#write.
# File 'lib/rinda/rinda.rb', line 265
def write(tuple, sec=nil) @ts.write(tuple, sec) end