Examples of SortedDeltaChangePipeValidator


Examples of org.openstreetmap.osmosis.core.sort.v0_6.SortedDeltaChangePipeValidator

  public ChangeApplier(int inputBufferCapacity) {
    basePostbox = new DataPostbox<EntityContainer>(inputBufferCapacity);
    sortedEntityValidator = new SortedEntityPipeValidator();
    sortedEntityValidator.setSink(new DataPostboxSink(basePostbox));
    changePostbox = new DataPostbox<ChangeContainer>(inputBufferCapacity);
    sortedChangeValidator = new SortedDeltaChangePipeValidator();
    sortedChangeValidator.setChangeSink(new DataPostboxChangeSink(changePostbox));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.