[290968] Contribution
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng / src / org / eclipse / linuxtools / lttng / state / IStateDataRequestListener.java
CommitLineData
88144d4a
ASL
1/*******************************************************************************
2 * Copyright (c) 2009 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;
13
14
15/**
16 * Interface to be used to receive notification of Processing start and
17 * completed
18 *
19 * @author alvaro
20 *
21 */
22public interface IStateDataRequestListener {
23 // ========================================================================
24 // Methods
25 // ========================================================================
26
41dc35d0
FC
27 /**
28 *
29 * @param request
30 * @return
31 */
88144d4a
ASL
32 public void processingStarted(RequestStartedSignal request);
33
41dc35d0
FC
34 /**
35 * @param signal
36 */
88144d4a
ASL
37 public void processingCompleted(RequestCompletedSignal signal);
38}
This page took 0.025053 seconds and 5 git commands to generate.