/** Shut down all the named stores */
  @Override
  public void shutdown() {
    Iterator<Map.Entry<String, BinaryStore>> it = getNamedStoreIterator();

    while (it.hasNext()) {
      BinaryStore bs = it.next().getValue();
      bs.shutdown();
    }
  }