Examples of SortedEntityPipeValidator


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

   * @param inputBufferCapacity
   *            The size of the buffers to use for input sources.
   */
  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

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

      BoundRemovedAction boundRemovedAction) {
   
    this.conflictResolutionMethod = conflictResolutionMethod;
   
    postbox0 = new DataPostbox<EntityContainer>(inputBufferCapacity);
    sortedEntityValidator0 = new SortedEntityPipeValidator();
    sortedEntityValidator0.setSink(new DataPostboxSink(postbox0));
   
    postbox1 = new DataPostbox<EntityContainer>(inputBufferCapacity);
    sortedEntityValidator1 = new SortedEntityPipeValidator();
    sortedEntityValidator1.setSink(new DataPostboxSink(postbox1));
  }
View Full Code Here

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

    this.enableWayTileIndex = enableWayTileIndex;
   
    storeContainer = new CompletableContainer();
   
    // Validate all input data to ensure it is sorted.
    sortedPipeValidator = new SortedEntityPipeValidator();
    sortedPipeValidator.setSink(new Sink() {
      @Override
        public void initialize(Map<String, Object> metaData) {
        throw new UnsupportedOperationException();
      }
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.