Added a FIXME for later releases

This commit is contained in:
Trustin Lee 2010-05-19 11:31:25 +00:00
parent d51ccd2211
commit c64e6866f6

View File

@ -219,6 +219,8 @@ public class OrderedMemoryAwareThreadPoolExecutor extends
}
protected boolean removeChildExecutor(Object key) {
// FIXME: Succeed only when there is no task in the ChildExecutor's queue.
// Note that it will need locking which might slow down task submission.
return childExecutors.remove(key) != null;
}