]> source.dussan.org Git - vaadin-framework.git/commitdiff
Added some comments for #8694
authorJonatan Kronqvist <jonatan.kronqvist@itmill.com>
Thu, 19 Apr 2012 07:00:34 +0000 (07:00 +0000)
committerJonatan Kronqvist <jonatan.kronqvist@itmill.com>
Thu, 19 Apr 2012 07:00:34 +0000 (07:00 +0000)
svn changeset:23583/svn branch:6.8

src/com/vaadin/terminal/gwt/client/ApplicationConnection.java

index 93e2657eb41af8544e5c49efc9d6d6bc39b3af4e..0603e80c93ab47c6704b6c96e1882fe9e06ca3ea 100644 (file)
@@ -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;