blob: 83db76073ce4e56e384356b5ad717f8733c7163e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 IBM Corporation.
* 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.ptp.rm.core.utils;
/**
* A listener that is called when some chunk of data is received from a stream.
* A IStreamListener is an entity that can receive one chunk at time.
*
* @author Daniel Felix Ferber
* @since 1.0
*/
public interface IInputStreamListener {
void newBytes(byte bytes[], int length);
void streamClosed();
void streamError(Exception e);
}