Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2013-09-13 08:35:14 +0000
committerUwe Stieber2013-09-13 08:35:47 +0000
commit5fda781d84d1d01f5006815795739241d8d2bee8 (patch)
tree4a3bcfcf8ceba07a107733767837b7da2014d015
parent205a4e4d65737c4b869908711f6f81211d4ae818 (diff)
downloadorg.eclipse.tcf-5fda781d84d1d01f5006815795739241d8d2bee8.tar.gz
org.eclipse.tcf-5fda781d84d1d01f5006815795739241d8d2bee8.tar.xz
org.eclipse.tcf-5fda781d84d1d01f5006815795739241d8d2bee8.zip
Target Explorer: Fix some outdated documentation of the terminal output stream monitor
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/src/org/eclipse/tcf/te/ui/terminals/streams/OutputStreamMonitor.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/src/org/eclipse/tcf/te/ui/terminals/streams/OutputStreamMonitor.java b/target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/src/org/eclipse/tcf/te/ui/terminals/streams/OutputStreamMonitor.java
index b729f903c..8829a2c26 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/src/org/eclipse/tcf/te/ui/terminals/streams/OutputStreamMonitor.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.ui.terminals/src/org/eclipse/tcf/te/ui/terminals/streams/OutputStreamMonitor.java
@@ -65,7 +65,7 @@ public class OutputStreamMonitor implements IDisposable {
* An interface to be implemented by listeners who want to listen
* to the streams data without interfering with the original data receiver.
* <p>
- * Listeners are asynchronously invoked in the TCF dispatch thread.
+ * Listeners are invoked within the monitor processing thread.
*/
public static interface Listener {
@@ -302,7 +302,7 @@ public class OutputStreamMonitor implements IDisposable {
// If changed, get the new bytes array
if (changed) byteBuffer = text.getBytes();
- // If listeners are registered, signal them the content read event asynchronously
+ // If listeners are registered, invoke the listeners now.
if (listeners.size() > 0) {
for (Object candidate : listeners.getListeners()) {
if (!(candidate instanceof Listener)) continue;

Back to the top