diff options
author | Jonatan Kronqvist <jonatan.kronqvist@itmill.com> | 2012-04-19 07:00:34 +0000 |
---|---|---|
committer | Jonatan Kronqvist <jonatan.kronqvist@itmill.com> | 2012-04-19 07:00:34 +0000 |
commit | 423a93b491612d54521f2d36be77256ddcdfa28d (patch) | |
tree | 1488496131844b60e2e98f3105dc333f221c94c0 | |
parent | c558076a1981adabbe99c1ec3dbf869ecb27cace (diff) | |
download | vaadin-framework-423a93b491612d54521f2d36be77256ddcdfa28d.tar.gz vaadin-framework-423a93b491612d54521f2d36be77256ddcdfa28d.zip |
Added some comments for #8694
svn changeset:23583/svn branch:6.8
-rw-r--r-- | src/com/vaadin/terminal/gwt/client/ApplicationConnection.java | 13 |
1 files changed, 13 insertions, 0 deletions
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; |