blob: 651fbf5aea90d786fef352e4388cbaf2e524c307 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.core.model;
/**
* A stream monitor who's contents can be flushed. As well, a client may
* turn buffering on/off in a flushable stream monitor.
* <p>
* Clients may implement this interface.
* </p>
* @since 2.1
* @see IStreamMonitor
* @see IBinaryStreamMonitor
*/
public interface IFlushableStreamMonitor extends IStreamMonitor {
/**
* Empties the contents of this stream monitor's underlying buffer.
*/
void flushContents();
/**
* Sets whether the contents of this monitor's underlying stream should be
* buffered. When <code>false</code>, contents appended to this stream monitor
* are not stored in a buffer, and are thus not available from
* <code>getContents()</code>. Registered listeners are notified of appended
* text, and must buffer the contents if desired.
*
* @param buffer whether the contents of this monitor's underlying stream
* should be buffered
*/
void setBuffered(boolean buffer);
/**
* Returns whether the contents of this monitor's underlying stream is
* buffered.
*
* @return whether the contents of this monitor's underlying stream is
* buffered
*/
boolean isBuffered();
}