// Now unload all the destinations that we've loaded so msgs can be routed correctly later on by the broker
Iterator itr = dstLoadedSet.iterator();
while (itr.hasNext()) {
Destination d = (Destination)itr.next();
d.sync(); // Sync changes to disk
d.unload(true);
}
dstLoadedSet = null;
// Sync changes to txn tables
tidList.sync(null);