Package eu.stratosphere.runtime.io.gates

Examples of eu.stratosphere.runtime.io.gates.OutputGate


    return this.unboundInputGateIDs.poll();
  }

  @Override
  public OutputGate createAndRegisterOutputGate() {
    OutputGate gate = new OutputGate(getJobID(), new GateID(), getNumberOfOutputGates());
    this.outputGates.add(gate);

    return gate;
  }
View Full Code Here


  }


  @Override
  public Set<ChannelID> getOutputChannelIDsOfGate(final GateID gateID) {
    OutputGate outputGate = null;
    final Iterator<OutputGate> gateIterator = this.outputGates.iterator();
    while (gateIterator.hasNext()) {
      final OutputGate candidateGate = gateIterator.next();
      if (candidateGate.getGateID().equals(gateID)) {
        outputGate = candidateGate;
        break;
      }
    }
View Full Code Here

TOP

Related Classes of eu.stratosphere.runtime.io.gates.OutputGate

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.