Fix a range synch issue in the Events table
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng / src / org / eclipse / linuxtools / lttng / state / evProcessor / ITransEventProcessor.java
CommitLineData
5d10d135
ASL
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 *******************************************************************************/
12package org.eclipse.linuxtools.lttng.state.evProcessor;
13
14/**
15 * @author alvaro
16 *
17 */
18public interface ITransEventProcessor extends IBaseEventProcessor,
19 ILttngEventProcessor {
20
21 /**
22 * @return the eventCount
23 */
24 public Long getBeforeEventCount();
25
26 /**
27 * @return the stateUpdateCount
28 */
29 public Long getStateUpdateCount();
30
31 /**
32 * @return the count of filtered out events e.g. event received from a trace
33 * not matching the trace state system
34 */
35 public Long getFilteredOutEventCount();
36
37}
This page took 0.02641 seconds and 5 git commands to generate.