tmf: Use tabs in statistics view for each traces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.core / src / org / eclipse / linuxtools / internal / lttng / core / state / evProcessor / ITransEventProcessor.java
1 /*******************************************************************************
2 * Copyright (c) 2010 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 * Contributors:
10 * Alvaro Sanchez-Leon (alvsan09@gmail.com) - Initial API and implementation
11 * Michel Dagenais (michel.dagenais@polymtl.ca) - Reference C implementation, used with permission
12 *******************************************************************************/
13 package org.eclipse.linuxtools.internal.lttng.core.state.evProcessor;
14
15 /**
16 * @author alvaro
17 *
18 */
19 public interface ITransEventProcessor extends IBaseEventProcessor,
20 ILttngEventProcessor {
21
22 /**
23 * @return the eventCount
24 */
25 public Long getBeforeEventCount();
26
27 /**
28 * @return the stateUpdateCount
29 */
30 public Long getStateUpdateCount();
31
32 /**
33 * @return the count of filtered out events e.g. event received from a trace
34 * not matching the trace state system
35 */
36 public Long getFilteredOutEventCount();
37
38 }
This page took 0.031394 seconds and 5 git commands to generate.