Package org.openstreetmap.osmosis.core.task.v0_6

Examples of org.openstreetmap.osmosis.core.task.v0_6.ChangeSink


    return changeSorter;
  }


  private void writeChangeset(XmlChangeReader xmlReader) {
    final ChangeSink localChangeSink = changeSink;

    xmlReader.setChangeSink(new ChangeSink() {
      private ChangeSink suppressedWriter = localChangeSink;


      @Override
      public void initialize(Map<String, Object> metaData) {
View Full Code Here


  /**
   * {@inheritDoc}
   */
  @Override
  protected void processChangeset(XmlChangeReader xmlReader, ReplicationState replicationState) {
    final ChangeSink localChangeSink = changeSorter;
   
    xmlReader.setChangeSink(new ChangeSink() {
      private ChangeSink suppressedChangeSink = localChangeSink;

      @Override
      public void initialize(Map<String, Object> metaData) {
        // Suppress the call.
View Full Code Here

     
      // Connect the tasks.
      source.setSink(sink);
    }
    for (int i = 0; i < task.getChangeSinkCount(); i++) {
      ChangeSink changeSink;
      ChangeSource changeSource;
     
      // Retrieve the next sink.
      changeSink = task.getChangeSink(i);
     
View Full Code Here

  @Override
  public void connect(PipeTasks pipeTasks) {
    // A multi sink receives multiple streams of data, so we must connect
    // them up one by one.
    for (int i = 0; i < task.getChangeSinkCount(); i++) {
      ChangeSink sink;
      ChangeSource source;
     
      // Retrieve the next sink.
      sink = task.getChangeSink(i);
     
View Full Code Here

  /**
   * {@inheritDoc}
   */
  @Override
  public void connect(PipeTasks pipeTasks) {
    ChangeSource source;

    // Get the input task. A sink only has one input, this corresponds to
    // pipe index 0.
    source = (ChangeSource) getInputTask(pipeTasks, 0, ChangeSource.class);

    // Cast the input feed to the correct type.
    // Connect the tasks.
    source.setChangeSink(task);

    // Register the task as an output. A source only has one output, this
    // corresponds to pipe index 0.
    setOutputTask(pipeTasks, task, 0);
  }
View Full Code Here

  /**
   * {@inheritDoc}
   */
  @Override
  public void connect(PipeTasks pipeTasks) {
    ChangeSource source;
   
    // Get the input task. A sink only has one input, this corresponds to
    // pipe index 0.
    source = (ChangeSource) getInputTask(pipeTasks, 0, ChangeSource.class);
   
    // Cast the input feed to the correct type.
    // Connect the tasks.
    source.setChangeSink(task);
  }
View Full Code Here

  /**
   * {@inheritDoc}
   */
  @Override
  public void connect(PipeTasks pipeTasks) {
    ChangeSource source;
   
    // Get the input task. A sink only has one input, this corresponds to
    // pipe index 0.
    source = (ChangeSource) getInputTask(pipeTasks, 0, ChangeSource.class);
   
    // Connect the tasks.
    source.setChangeSink(task);
   
    // Register the task as an output. A source only has one output, this
    // corresponds to pipe index 0.
    setOutputTask(pipeTasks, task, 0);
  }
View Full Code Here

  /**
   * {@inheritDoc}
   */
  @Override
  public void connect(PipeTasks pipeTasks) {
    ChangeSource source;
   
    // Get the input task. A sink only has one input, this corresponds to
    // pipe index 0.
    source = (ChangeSource) getInputTask(pipeTasks, 0, ChangeSource.class);
   
    // Cast the input feed to the correct type.
    // Connect the tasks.
    source.setChangeSink(task);
   
    // Register the task as an output. A source only has one output, this
    // corresponds to pipe index 0.
    setOutputTask(pipeTasks, task, 0);
  }
View Full Code Here

  /**
   * {@inheritDoc}
   */
  @Override
  public void connect(PipeTasks pipeTasks) {
    ChangeSource source;
    int taskSourceCount;
   
    // Get the input task. A sink only has one input, this corresponds to
    // pipe index 0.
    source = (ChangeSource) getInputTask(pipeTasks, 0, ChangeSource.class);
   
    // Cast the input feed to the correct type.
    // Connect the tasks.
    source.setChangeSink(task);
   
    // Register all the sources provided by this task as outputs.
    taskSourceCount = task.getChangeSourceCount();
    for (int i = 0; i < taskSourceCount; i++) {
      setOutputTask(pipeTasks, task.getChangeSource(i), i);
View Full Code Here

      // Connect the tasks.
      source.setSink(sink);
    }
    for (int i = 0; i < task.getChangeSinkCount(); i++) {
      ChangeSink changeSink;
      ChangeSource changeSource;
     
      // Retrieve the next sink.
      changeSink = task.getChangeSink(i);
     
      // Retrieve the appropriate source.
      changeSource = (ChangeSource) getInputTask(
        pipeTasks,
        i + task.getSinkCount(),
        ChangeSource.class
      );
     
      // Connect the tasks.
      changeSource.setChangeSink(changeSink);
    }
   
    // Register the change source as an output task.
    setOutputTask(pipeTasks, task, 0);
  }
View Full Code Here

TOP

Related Classes of org.openstreetmap.osmosis.core.task.v0_6.ChangeSink

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.