blob: f7d326b396898a86e7017cba4e9f68351c2a7bb1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 École Polytechnique de Montréal
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.tracecompass.analysis.os.linux.core.execution.graph;
import org.eclipse.tracecompass.analysis.graph.core.building.ITraceEventHandler;
/**
* Interface that should be implemented for each graph handler. These classes
* will be initialized with a default constructor by the extension points and
* will create the actual handlers with the graph provider.
*
* @author Geneviève Bastien
* @since 2.4
*/
public interface IOsExecutionGraphHandlerBuilder {
/**
* Create an actual event handler for the given provider
*
* @param provider
* The execution graph provider
* @param priority
* The priority level that this level should have
* @return The event handler
*/
ITraceEventHandler createHandler(OsExecutionGraphProvider provider, int priority);
}