summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorHenrik Paul <henrik@vaadin.com>2013-08-23 15:59:23 +0300
committerVaadin Code Review <review@vaadin.com>2013-09-10 10:32:28 +0000
commit53282726c5769bf763beb5d8576c71e0e7b5bef3 (patch)
tree8b414b0ed2c9db3345acb726abe130f4df952044 /shared
parentba76f5660bc74fc7a96b93944a79f95366c53b8d (diff)
downloadvaadin-framework-53282726c5769bf763beb5d8576c71e0e7b5bef3.tar.gz
vaadin-framework-53282726c5769bf763beb5d8576c71e0e7b5bef3.zip
Ignore RPC calls from components that are concurrently removed (#12337)
Change-Id: I8b97444d33b9535b9073fd705fed15a6cc2992e7
Diffstat (limited to 'shared')
-rw-r--r--shared/src/com/vaadin/shared/ApplicationConstants.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/ApplicationConstants.java b/shared/src/com/vaadin/shared/ApplicationConstants.java
index 1dff1e19cc..5ae52615bb 100644
--- a/shared/src/com/vaadin/shared/ApplicationConstants.java
+++ b/shared/src/com/vaadin/shared/ApplicationConstants.java
@@ -96,4 +96,12 @@ public class ApplicationConstants implements Serializable {
* @since 7.2
*/
public static final String CSRF_TOKEN = "csrfToken";
+
+ /**
+ * The name of the parameter used to transmit the sync id
+ *
+ * @see com.vaadin.ui.ConnectorTracker#getCurrentSyncId()
+ * @since 7.2
+ */
+ public static final String SERVER_SYNC_ID = "syncId";
}