diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2013-02-27 14:33:04 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-04-04 12:46:42 +0000 |
commit | 69def694d5d98f518ad08c039195fd2ac8781d2f (patch) | |
tree | 8ec221cf013607180bf08b65ea189d44cd9dda49 /server/ivy.xml | |
parent | 008d51dba378c2feb57bd5d30550561567f3f91a (diff) | |
download | vaadin-framework-69def694d5d98f518ad08c039195fd2ac8781d2f.tar.gz vaadin-framework-69def694d5d98f518ad08c039195fd2ac8781d2f.zip |
Server push (#111)
* Asynchronous bidirectional communication
* Use Atmosphere as a backend
* Use websockets if available, fallback to HTTP streaming
* Push mode (disabled, manual, automatic)
* Configurable via servlet parameter pushMode
* Disabled: The default; regular AJAX communication
* Manual: Need explicit UI.push() call
* Automatic: push all UIs in session when lock released
* UI.push()
* Push pending state and RPC to client asynchronously
* Must hold session lock when invoking
Change-Id: Idb5978ac81f7ff1e66665df4e3f96e29e4c419d4
Diffstat (limited to 'server/ivy.xml')
-rw-r--r-- | server/ivy.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/ivy.xml b/server/ivy.xml index d757e3a3cd..09e34fc075 100644 --- a/server/ivy.xml +++ b/server/ivy.xml @@ -49,6 +49,10 @@ <!-- Jsoup for BootstrapHandler --> <dependency org="org.jsoup" name="jsoup" rev="1.6.3" conf="build,ide,test -> default" /> + + <!-- Atmosphere --> + <dependency org="org.atmosphere" name="atmosphere-runtime" rev="1.0.12" + conf="build,ide,test -> default" /> <!-- TESTING DEPENDENCIES --> |