From: Jonatan Kronqvist Date: Thu, 19 Apr 2012 07:00:34 +0000 (+0000) Subject: Added some comments for #8694 X-Git-Tag: 7.0.0.alpha3~260^2~11 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=423a93b491612d54521f2d36be77256ddcdfa28d;p=vaadin-framework.git Added some comments for #8694 svn changeset:23583/svn branch:6.8 --- diff --git a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java index 93e2657eb4..0603e80c93 100644 --- a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java +++ b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java @@ -643,10 +643,23 @@ public class ApplicationConnection { int cssWaits = 0; + /** + * Holds the time spent rendering the last request + */ protected int lastProcessingTime; + /** + * Holds the total time spent rendering requests during the lifetime of the + * session. + */ protected int totalProcessingTime; + /** + * Holds the timing information from the server-side. How much time was + * spent servicing the last request and how much time has been spent + * servicing the session so far. These values are always one request behind, + * since they cannot be measured before the request is finished. + */ private ValueMap testBenchServerStatus; static final int MAX_CSS_WAITS = 100;