*/
public TaskGroup(String name) {
this(name, new PossibleWorkItemComparator(), new FutureResultImpl<T>(), new TimeServerImpl());
}
public TaskGroup(String name, FutureResultImplementor<T> result) {
this(name, new PossibleWorkItemComparator(), result, new TimeServerImpl());
}