Package org.apache.flink.runtime.profiling

Examples of org.apache.flink.runtime.profiling.ProfilingListener


          final InstanceSummaryProfilingEvent instanceSummary = jobProfilingData
            .getInstanceSummaryProfilingData(timestamp);

          final Iterator<ProfilingListener> listenerIterator = jobListeners.iterator();
          while (listenerIterator.hasNext()) {
            final ProfilingListener profilingListener = listenerIterator.next();
            profilingListener.processProfilingEvents(singleInstanceProfilingEvent);
            if (instanceSummary != null) {
              profilingListener.processProfilingEvents(instanceSummary);
            }
          }
        }
      }
    }
View Full Code Here

TOP

Related Classes of org.apache.flink.runtime.profiling.ProfilingListener

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.