diff options
author | Leif Åstrand <leif@vaadin.com> | 2013-04-22 13:19:31 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-04-22 12:10:27 +0000 |
commit | 2c46baf7206d3735d737b8bda08596abe2fd649b (patch) | |
tree | 2deeed465c161a545af052c1e49bb09e2343cf51 /uitest | |
parent | 3cf35ba23128490994c9fa4a2f6d4475ceea932a (diff) | |
download | vaadin-framework-2c46baf7206d3735d737b8bda08596abe2fd649b.tar.gz vaadin-framework-2c46baf7206d3735d737b8bda08596abe2fd649b.zip |
Add PushConnection interface (#11655)
* Add PushConnection interface and rename old class to
AtmospherePushConnection
* Define deferred binding to use AtmospherePushConnection by default
* Redesign connection and disconnection workflow to better cope with
situations where connection is quickly toggled
Change-Id: I9b9427c2df40d446a25895eb39e7b166cb929a85
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/widgetset/client/TestingPushConnection.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/widgetset/client/TestingPushConnection.java b/uitest/src/com/vaadin/tests/widgetset/client/TestingPushConnection.java index 8453daabcd..8d00598907 100644 --- a/uitest/src/com/vaadin/tests/widgetset/client/TestingPushConnection.java +++ b/uitest/src/com/vaadin/tests/widgetset/client/TestingPushConnection.java @@ -2,9 +2,9 @@ package com.vaadin.tests.widgetset.client; import com.google.gwt.user.client.Window; import com.vaadin.client.ApplicationConnection; -import com.vaadin.client.communication.PushConnection; +import com.vaadin.client.communication.AtmospherePushConnection; -public class TestingPushConnection extends PushConnection { +public class TestingPushConnection extends AtmospherePushConnection { private String transport; |