package code.space;

public interface Client {
    String getIdString();

    void doneChild(Computation child);

} 
