diff options
author | Pekka Hyvönen <pekka@vaadin.com> | 2017-01-10 08:36:09 +0200 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-01-10 08:36:09 +0200 |
commit | cba4eb476b559cc97ccf2d8197d176a0813707c7 (patch) | |
tree | f6c17b79ea161809d31e044425b95486e4c99efc /documentation/advanced/advanced-push.asciidoc | |
parent | 91723ac8dde24249b2753d671f42d0f3cddb20a9 (diff) | |
download | vaadin-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.asciidoc | 5 |
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"]. |