analysis: introduce latency table view
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.core / src / org / eclipse / tracecompass / analysis / os / linux / core / latency / LatencyAnalysisListener.java
1 /*******************************************************************************
2 * Copyright (c) 2015 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *******************************************************************************/
9
10 package org.eclipse.tracecompass.analysis.os.linux.core.latency;
11
12 import org.eclipse.tracecompass.segmentstore.core.ISegment;
13 import org.eclipse.tracecompass.segmentstore.core.ISegmentStore;
14
15 /**
16 * End of latency analysis listener for latency viewers
17 *
18 * @author France Lapointe Nguyen
19 * @since 1.1
20 */
21 public interface LatencyAnalysisListener {
22
23 /**
24 * Called at the end of the latency analysis
25 *
26 * @param activeAnalysis
27 * latency analysis that is running
28 *
29 * @param data
30 * results of the latency analysis
31 */
32 void onComplete(LatencyAnalysis activeAnalysis, ISegmentStore<ISegment> data);
33
34 }
This page took 0.031581 seconds and 5 git commands to generate.