temporary re-factoring project
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng / src / org / eclipse / linuxtools / lttng / state / IStateDataRequestListener.java
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 *******************************************************************************/
12 package 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 */
22 public interface IStateDataRequestListener {
23 // ========================================================================
24 // Methods
25 // ========================================================================
26
27 /**
28 *
29 * @param request
30 * @return
31 */
32 public void processingStarted(RequestStartedSignal request);
33
34 /**
35 * @param signal
36 */
37 public void processingCompleted(RequestCompletedSignal signal);
38 }
This page took 0.030902 seconds and 5 git commands to generate.