Package eu.stratosphere.nephele.profiling.types

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


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

      final ThreadProfilingEvent threadProfilingEvent = new ThreadProfilingEvent(profilingData.getUserTime(),
        profilingData.getSystemTime(), profilingData.getBlockedTime(), profilingData.getWaitedTime(),
        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.ThreadProfilingEvent

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.