Package org.openstreetmap.osmosis.core.util

Examples of org.openstreetmap.osmosis.core.util.PropertiesPersister



  @Override
  public void saveState(ReplicationState state) {
    File stateFile = sequenceFormatter.getFormattedName(state.getSequenceNumber(), ".state.txt");
    new PropertiesPersister(stateFile).store(state.store());

    if (saveCurrentState) {
      currentStatePersister.store(state.store());
    }
  }
View Full Code Here

TOP

Related Classes of org.openstreetmap.osmosis.core.util.PropertiesPersister

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.