ibis.satin
Interface ActiveTuple
- All Superinterfaces:
- java.io.Serializable
- public interface ActiveTuple
- extends java.io.Serializable
The marker interface of active tuples. Every active tuple should implement
this interface. When an active tuple is added to the tuple space (as data
element), the handleTuple method will be invoked on all machines, including
the one that inserted the element.
Method Summary |
void |
handleTuple(java.lang.String key)
Notifies that a new active tuple with the specified key has been added to
the tuple space. |
handleTuple
public void handleTuple(java.lang.String key)
- Notifies that a new active tuple with the specified key has been added to
the tuple space.
- Parameters:
key
- the key of the new active tuple.
The Ibis project