Package org.eclipse.debug.core
Interface IBinaryStreamListener
public interface IBinaryStreamListener
A stream listener is notified of changes to a binary stream monitor.
Clients may implement this interface.
- Since:
- 3.16
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
streamAppended
(byte[] data, IBinaryStreamMonitor monitor) Notifies this listener that data has been appended to the given stream monitor.
-
Method Details
-
streamAppended
Notifies this listener that data has been appended to the given stream monitor.- Parameters:
data
- the content appended; notnull
monitor
- the stream monitor to which content was appended
-