Uses of Class
lights.interfaces.TupleSpaceException

Packages that use TupleSpaceException
lights   
lights.adapters   
lights.interfaces   
 

Uses of TupleSpaceException in lights
 

Methods in lights that throw TupleSpaceException
 void TupleSpace.out(ITuple tuple)
          Inserts a tuple in the tuple space.
 void TupleSpace.outg(ITuple[] tuples)
          Inserts multiple tuples in the tuple space.
 ITuple TupleSpace.in(ITuple template)
          Withdraws from the tuple space a tuple matching the template specified; if no tuple is found, the caller is suspended until such a tuple shows up in the tuple space.
 ITuple TupleSpace.inp(ITuple template)
          Withdraws from the tuple space a tuple matching the template specified; if no tuple is found, null is returned.
 ITuple[] TupleSpace.ing(ITuple template)
          Withdraws from the tuple space all the tuple matching the template specified.
 ITuple TupleSpace.rd(ITuple template)
          Reads from the tuple space a copy of a tuple matching the template specified.
 ITuple TupleSpace.rdp(ITuple template)
          Reads from the tuple space a copy of a tuple matching the template specified.
 ITuple[] TupleSpace.rdg(ITuple template)
          Reads from the tuple space a copy of all the tuples matching the template specified.
 int TupleSpace.count(ITuple template)
          Returns a count of the tuples found in the tuple space that match the template.
 

Uses of TupleSpaceException in lights.adapters
 

Methods in lights.adapters that throw TupleSpaceException
 void TupleSpace.out(ITuple tuple)
          Inserts a tuple in the tuple space.
 void TupleSpace.outg(ITuple[] tuples)
          Inserts multiple tuples in the tuple space.
 ITuple TupleSpace.in(ITuple template)
          Withdraws from the tuple space a tuple matching the template specified.
 ITuple TupleSpace.inp(ITuple template)
          Withdraws from the tuple space a tuple matching the template specified.
 ITuple[] TupleSpace.ing(ITuple template)
          Withdraws from the tuple space all the tuple matching the template specified.
 ITuple TupleSpace.rd(ITuple template)
          Reads from the tuple space a copy of a tuple matching the template specified.
 ITuple TupleSpace.rdp(ITuple template)
          Reads from the tuple space a copy of a tuple matching the template specified.
 ITuple[] TupleSpace.rdg(ITuple template)
          Reads from the tuple space a copy of all the tuples matching the template specified.
 int TupleSpace.count(ITuple template)
          Returns a count of the tuples found in the tuple space that match the template.
 

Constructors in lights.adapters that throw TupleSpaceException
TupleSpace()
          Creates a tuple space with a default name.
TupleSpace(java.lang.String name)
          Creates a tuple space with the name specified by the user, and optimization for speed.
 

Uses of TupleSpaceException in lights.interfaces
 

Methods in lights.interfaces that throw TupleSpaceException
 void ITupleSpace.out(ITuple tuple)
          Inserts a tuple in the tuple space.
 void ITupleSpace.outg(ITuple[] tuples)
          Inserts multiple tuples in the tuple space.
 ITuple ITupleSpace.in(ITuple template)
          Withdraws from the tuple space a tuple matching the template specified; if no tuple is found, the caller is suspended until such a tuple shows up in the tuple space.
 ITuple ITupleSpace.inp(ITuple template)
          Withdraws from the tuple space a tuple matching the template specified; if no tuple is found, null is returned.
 ITuple[] ITupleSpace.ing(ITuple template)
          Withdraws from the tuple space all the tuple matching the template specified.
 ITuple ITupleSpace.rd(ITuple template)
          Reads from the tuple space a copy of a tuple matching the template specified.
 ITuple ITupleSpace.rdp(ITuple template)
          Reads from the tuple space a copy of a tuple matching the template specified.
 ITuple[] ITupleSpace.rdg(ITuple template)
          Reads from the tuple space a copy of all the tuples matching the template specified.
 int ITupleSpace.count(ITuple template)
          Returns a count of the tuples found in the tuple space that match the template.