projet-donnees-reparties/linda/Callback.java

15 lines
280 B
Java
Raw Normal View History

2021-11-27 16:50:33 +00:00
package linda;
/** Callback when a tuple appears.
* @author philippe.queinnec@enseeiht.fr
*/
public interface Callback {
/** Callback when a tuple appears.
* See Linda.eventRegister for details.
*
* @param t the new tuple
*/
void call(Tuple t);
}