Community
Participate
Working Groups
// If we don't, we risk an infinite loop where we try, over and over
// to perform an operation that keeps on failing.
fOngoingOperation = false;
fOperationsPending.clear();
// Complete each rm of the cancelled operations
while (fOperationsPending.size() > 0) {
RequestMonitor rm = fOperationsPending.poll().rm;
rm.setStatus(getStatus());
rm.done();
}
super.handleFailure();
};