Skip to main content
summaryrefslogtreecommitdiffstats
blob: 270cd201c1e0af9ddacf86863f563d7952b97750 (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
/*******************************************************************************
 *  Copyright (c) 2009 Wind River Systems and others.
 *  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:
 *      Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.dsf.debug.service.command;

import org.eclipse.cdt.dsf.concurrent.ConfinedToDsfExecutor;

/**
 * Synchronous listener for events issued from the debugger.  All 
 * registered listeners will be called in the same dispatch cycle.
 * 
 * @since 1.0
 */
@ConfinedToDsfExecutor("")
public interface IEventListener {
    /**
     * Notifies that the given asynchronous output was received from the 
     * debugger.
     * @param output output that was received from the debugger.  Format
     * of the output data is debugger specific.
     */
    public void eventReceived(Object output);
}

Back to the top