Package org.openstreetmap.osmosis.replication.common

Examples of org.openstreetmap.osmosis.replication.common.FileReplicationStore


   *
   * @param workingDirectory
   *            The directory containing configuration and tracking files.
   */
  public ReplicationWriter(File workingDirectory) {
    replicationStore = new FileReplicationStore(workingDirectory, false);
    stateWriter = new ReplicationStateWriter(workingDirectory);
  }
View Full Code Here


   *            The directory containing configuration and tracking files.
   */
  public ReplicationFileMerger(File workingDirectory) {
    super(workingDirectory);
   
    replicationStore = new FileReplicationStore(new File(getWorkingDirectory(), DATA_DIRECTORY), true);

    sinkActive = false;
  }
View Full Code Here

TOP

Related Classes of org.openstreetmap.osmosis.replication.common.FileReplicationStore

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.