Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f7954e2ffd9d516bdc4dd4a45b822dd963fb205e (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
/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.debug.core.model;

import java.io.IOException;

/**
 * Extension to a streams proxy that allows closing of the output stream
 * connected to the standard input stream of a proxy's process.
 * <p>
 * Clients should implement this interface, in addition to
 * <code>IStreamsProxy</code>, if interested closing the standard
 * input stream.
 * </p>
 * @since 3.1
 */
public interface IStreamsProxy2 extends IStreamsProxy {

    /**
     * Closes the output stream connected to the standard input stream
     * of this proxy's process.
     *
     * @throws IOException if unable to close the stream
     */
    public void closeInputStream() throws IOException;
}

Back to the top