Package org.eclipse.debug.core
Interface IBinaryStreamListener
-
public interface IBinaryStreamListenerA stream listener is notified of changes to a binary stream monitor.Clients may implement this interface.
- Since:
- 3.16
- See Also:
IBinaryStreamMonitor,IStreamListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidstreamAppended(byte[] data, IBinaryStreamMonitor monitor)Notifies this listener that data has been appended to the given stream monitor.
-
-
-
Method Detail
-
streamAppended
void streamAppended(byte[] data, IBinaryStreamMonitor monitor)Notifies this listener that data has been appended to the given stream monitor.- Parameters:
data- the content appended; notnullmonitor- the stream monitor to which content was appended
-
-