From cde9d4684e3ddfba044bfa30645dcf7ee2ec0e16 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Leif=20=C3=85strand?= Date: Tue, 11 Dec 2012 14:52:09 +0200 Subject: [PATCH] Add getLastResponseId() (#10496) Change-Id: I574844eabd9ba33ac7c5e967c734f6cc27d40e3e --- .../vaadin/client/ApplicationConnection.java | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/client/src/com/vaadin/client/ApplicationConnection.java b/client/src/com/vaadin/client/ApplicationConnection.java index 5f90fe4c19..05cc88d0ee 100644 --- a/client/src/com/vaadin/client/ApplicationConnection.java +++ b/client/src/com/vaadin/client/ApplicationConnection.java @@ -260,6 +260,8 @@ public class ApplicationConnection { /** Event bus for communication events */ private EventBus eventBus = GWT.create(SimpleEventBus.class); + private int lastResponseId = -1; + /** * The communication handler methods are called at certain points during * communication with the server. This allows for making add-ons that keep @@ -1270,6 +1272,23 @@ public class ApplicationConnection { handleUIDLMessage(start, jsonText, json); } + /** + * Gets the id of the last received response. This id can be used by + * connectors to determine whether new data has been received from the + * server to avoid doing the same calculations multiple times. + *

+ * No guarantees are made for the structure of the id other than that there + * will be a new unique value every time a new response with data from the + * server is received. + *

+ * The initial id when no request has yet been processed is -1. + * + * @return and id identifying the response + */ + public int getLastResponseId() { + return lastResponseId; + } + protected void handleUIDLMessage(final Date start, final String jsonText, final ValueMap json) { if (!responseHandlingLocks.isEmpty()) { @@ -1294,6 +1313,8 @@ public class ApplicationConnection { return; } + lastResponseId++; + final MultiStepDuration handleUIDLDuration = new MultiStepDuration(); // Get security key -- 2.39.5