Package eu.stratosphere.nephele.profiling.types

Examples of eu.stratosphere.nephele.profiling.types.OutputGateProfilingEvent


      final List<ProfilingListener> jobListeners = this.registeredListeners.get(profilingData.getJobID());
      if (jobListeners == null) {
        return;
      }

      final OutputGateProfilingEvent outputGateProfilingEvent = new OutputGateProfilingEvent(profilingData
        .getGateIndex(), profilingData.getChannelCapacityExhaustedCounter(), profilingData
        .getExecutionVertexID().toManagementVertexID(), profilingData.getProfilingInterval(), profilingData
        .getJobID(), timestamp, timestamp - profilingStart);

      final Iterator<ProfilingListener> it = jobListeners.iterator();
View Full Code Here

TOP

Related Classes of eu.stratosphere.nephele.profiling.types.OutputGateProfilingEvent

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.