//Quiesce each participant and wait for an interrupt from a callback
//object when all are quiesced, or the timeout to be reached
for( int i=0; i<participants.size(); i++ ) {
QuiesceParticipant participant = participants.get(i);
QuiesceCallbackImpl callback = callbacks.get(i);
participant.quiesce(callback, copyOfBundles);
}
}else{
LOGGER.warn("No quiesce participants, so stopping bundles");
for (Bundle b : bundlesToQuiesce) {
stopBundle(b, bundlesToQuiesce);