// Get all of the entries
List entries = pingQueueMgr.getAllQueueEntries();
// Process each entry
for (Iterator i = entries.iterator(); i.hasNext();) {
PingQueueEntryData pingQueueEntry = (PingQueueEntryData) i.next();
processQueueEntry(pingQueueEntry);
}
if (logger.isDebugEnabled()) logger.debug("Finished processing ping queue.");
} catch (Exception ex) {
logger.error("Unexpected exception processing ping queue! Aborting this pass of ping queue processing.", ex);