Uses of Class
aa.tool.TupleSpaceException

Packages that use TupleSpaceException
aa.tool Provides the classes that are very useful for this application, but might be used for other applications. 
 

Uses of TupleSpaceException in aa.tool
 

Methods in aa.tool that throw TupleSpaceException
protected  ActorTuple[] TupleSpace.getMatchedTupleList(ActorTuple p_atTemplate, boolean p_bActorName)
          Finds actor tuples in this tuple space matched with the specified tuple template.
private  ActorTuple TupleSpace.getImpl(ActorTuple p_atTemplate, boolean p_bRemoveFlag)
          Gets a actor tuple matched with the specified tuple template, and remove it if bRemoveFlag is true.
private  ActorTuple[] TupleSpace.getAllImpl(ActorTuple p_atTemplate, boolean p_bRemoveFlag)
          Returns all actor tuples matched with the specified tuple template, and remove them if bRemoveFlag is true.
 void TupleSpace.write(ActorTuple p_atTuple)
          Inserts an actor tuple in this tuple space.
 ActorTuple TupleSpace.read(ActorTuple p_atTemplate)
          Reads an actor tuple matched with the specified tuple template.
 ActorTuple[] TupleSpace.readAll(ActorTuple p_atTemplate)
          Reads all actor tuples matched with the specified tuple template.
 ActorTuple TupleSpace.take(ActorTuple p_atTemplate)
          Reads an actor tuple matched with the specified tuple template, and then removes it.
 ActorTuple[] TupleSpace.takeAll(ActorTuple p_atTemplate)
          Reads all actor tuples matched with the specified tuple template, and then removes them.
 void TupleSpace.update(ActorTuple p_atTemplate, ActorTuple p_atTuple)
          Removes actor tuples matched with the given tuple template, and then inserts an actor tuple in this tuple space.
 void TupleSpace.removeAll(ActorTuple p_atTemplate)
          Removes all actor tuples matched with the sepecified tuple template.
 ActorName TupleSpace.search(ActorTuple p_atTemplate)
          Returns the actor name in an actor tuple matched with the specified tuple template.
 ActorName[] TupleSpace.searchAll(ActorTuple p_atTemplate)
          Returns actor names in all actor tuples matched with the specified tuple template.