/Users/lyon/j4p/src/classUtils/loaders/ComputableObject.java

1    package classUtils.loaders; 
2     
3    //package net.compute; 
4     
5    import java.io.Serializable; 
6     
7    // a = f(b) 
8    // the lhs cannot be assigned until 
9    // the rhs is computed. 
10   // so launch f(b) on a machine called 
11   // compute server. Wait on the 
12   // compute client until the computation 
13   // is completed. Then make the assignement. 
14   // So transmit a computable object to 
15   // the computation server and wait for an 
16   // answer! 
17    
18   public interface ComputableObject 
19           extends Serializable { 
20       public Serializable compute(); 
21   }