Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9710e13d06c381ca70361cffcfde94cc73a3410a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*******************************************************************************
 * Copyright (c) 2009, 2010 Ericsson
 * 
 * All rights reserved. This program and the accompanying materials are
 * made available under the terms of the Eclipse Public License v1.0 which
 * accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *   Alvaro Sanchez-Leon (alvsan09@gmail.com) - Initial API and implementation
 * 	 Michel Dagenais (michel.dagenais@polymtl.ca) - Reference C implementation, used with permission
 *******************************************************************************/
package org.eclipse.linuxtools.lttng.core.state.evProcessor;

import org.eclipse.linuxtools.lttng.core.event.LttngEvent;
import org.eclipse.linuxtools.lttng.core.state.model.LttngTraceState;

/**
 * @author alvaro
 *
 */
public interface ILttngEventProcessor {

	// ========================================================================
	// Abstract methods
	// =======================================================================
	/**
	 * Implementors will either dispatch or determine the handler of the event
	 * provided
	 * 
	 * @param trcEvent
	 * @param traceSt
	 * @return
	 */
	public abstract boolean process(LttngEvent trcEvent, LttngTraceState traceSt);
	
}

Back to the top