/** Initialize the store, and initialize all the named stores. */
  @Override
  public void start() {
    Iterator<Map.Entry<String, BinaryStore>> it = getNamedStoreIterator();

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