// to queue these up.
Iterator it = shutdownObservers.iterator();
while ( it.hasNext() )
{
IShutdownObserver observer = (IShutdownObserver) it.next();
observer.shutdown();
}
}
// do the traditional shutdown of the regions.
String[] names = getCacheNames();