summaryrefslogtreecommitdiffstats
path: root/documentation/advanced/advanced-push.asciidoc
diff options
context:
space:
mode:
authorPekka Hyvönen <pekka@vaadin.com>2017-01-10 08:36:09 +0200
committerHenri Sara <henri.sara@gmail.com>2017-01-10 08:36:09 +0200
commitcba4eb476b559cc97ccf2d8197d176a0813707c7 (patch)
treef6c17b79ea161809d31e044425b95486e4c99efc /documentation/advanced/advanced-push.asciidoc
parent91723ac8dde24249b2753d671f42d0f3cddb20a9 (diff)
downloadvaadin-framework-cba4eb476b559cc97ccf2d8197d176a0813707c7.tar.gz
vaadin-framework-cba4eb476b559cc97ccf2d8197d176a0813707c7.zip
Remove all referrals to book examples (#8163)
Minor documentation fixes.
Diffstat (limited to 'documentation/advanced/advanced-push.asciidoc')
-rw-r--r--documentation/advanced/advanced-push.asciidoc5
1 files changed, 0 insertions, 5 deletions
diff --git a/documentation/advanced/advanced-push.asciidoc b/documentation/advanced/advanced-push.asciidoc
index 365e674a50..4238c21139 100644
--- a/documentation/advanced/advanced-push.asciidoc
+++ b/documentation/advanced/advanced-push.asciidoc
@@ -270,7 +270,6 @@ public class PushyUI extends UI {
}
}
----
-See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.push.simple[on-line example, window="_blank"].
When sharing data between UIs or user sessions, you need to consider the
message-passing mechanism more carefully, as explained next.
@@ -331,7 +330,6 @@ public class Broadcaster implements Serializable {
}
}
----
-See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.push.pusharound[on-line example, window="_blank"].
In Java 8, you could use lambda expressions for the listeners instead of the
interface, and a parameterless expression to create the runnable:
@@ -343,7 +341,6 @@ for (final Consumer<String> listener: listeners)
executorService.execute(() ->
listener.accept(message));
----
-See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.push.pusharound[on-line example, window="_blank"].
[[advanced.push.pusharound.receiving]]
@@ -392,7 +389,6 @@ public class PushAroundUI extends UI
}
}
----
-See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.push.pusharound[on-line example, window="_blank"].
[[advanced.push.pusharound.sending]]
@@ -419,7 +415,6 @@ send.addClickListener(new ClickListener() {
}
});
----
-See the http://demo.vaadin.com/book-examples-vaadin7/book#advanced.push.pusharound[on-line example, window="_blank"].