blob: f002f574aa48d9aa003ecd69aae71f7c86ba019b [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2006 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 Implementation
*
*****************************************************************************/
package org.eclipse.ptp.remotetools.utils.stream;
/**
* 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 IStreamListener {
void newBytes(byte bytes[], int length);
void streamClosed();
void streamError(Exception e);
}