private Future getReduceTestEntry( Object value ) {
// Create a task and run it, assuring that the tests won't block on a get.
FutureTask task = new FutureTask( new ReduceTestEntry( value ) );
task.run();
return task;
}
public Future notifyReduce( Future lhs, Future rhs ) {
List<Integer> reduce = new ArrayList<Integer>();