Package eu.stratosphere.nephele.event.task

Examples of eu.stratosphere.nephele.event.task.AbstractTaskEvent


        throw new RuntimeException();
    }
  }

  public AbstractTaskEvent getCurrentEvent() {
    AbstractTaskEvent e = this.currentEvent;
    this.currentEvent = null;
    return e;
  }
View Full Code Here


  public void notifyDataUnitConsumed() {
    this.getInputGate().notifyDataUnitConsumed(getIndex());
  }

  public AbstractTaskEvent getCurrentEvent() {
    AbstractTaskEvent e = this.currentEvent;
    this.currentEvent = null;
    return e;
  }
View Full Code Here

TOP

Related Classes of eu.stratosphere.nephele.event.task.AbstractTaskEvent

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.