Class Timing


  • public class Timing
    extends Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      double connectEnd
      Time immediately before the user agent starts establishing the connection to the server to retrieve the resource.
      double connectStart
      Time immediately before the user agent starts establishing the connection to the server to retrieve the resource.
      double domainLookupEnd
      Time immediately after the browser starts the domain name lookup for the resource.
      double domainLookupStart
      Time immediately before the browser starts the domain name lookup for the resource.
      double requestStart
      Time immediately before the browser starts requesting the resource from the server, cache, or local resource.
      double responseEnd
      Time immediately after the browser receives the last byte of the resource or immediately before the transport connection is closed, whichever comes first.
      double responseStart
      Time immediately after the browser receives the first byte of the response from the server, cache, or local resource.
      double secureConnectionStart
      Time immediately before the browser starts the handshake process to secure the current connection.
      double startTime
      Request start time in milliseconds elapsed since January 1, 1970 00:00:00 UTC
    • Constructor Summary

      Constructors 
      Constructor Description
      Timing()  
    • Field Detail

      • startTime

        public double startTime
        Request start time in milliseconds elapsed since January 1, 1970 00:00:00 UTC
      • domainLookupStart

        public double domainLookupStart
        Time immediately before the browser starts the domain name lookup for the resource. The value is given in milliseconds relative to startTime, -1 if not available.
      • domainLookupEnd

        public double domainLookupEnd
        Time immediately after the browser starts the domain name lookup for the resource. The value is given in milliseconds relative to startTime, -1 if not available.
      • connectStart

        public double connectStart
        Time immediately before the user agent starts establishing the connection to the server to retrieve the resource. The value is given in milliseconds relative to startTime, -1 if not available.
      • secureConnectionStart

        public double secureConnectionStart
        Time immediately before the browser starts the handshake process to secure the current connection. The value is given in milliseconds relative to startTime, -1 if not available.
      • connectEnd

        public double connectEnd
        Time immediately before the user agent starts establishing the connection to the server to retrieve the resource. The value is given in milliseconds relative to startTime, -1 if not available.
      • requestStart

        public double requestStart
        Time immediately before the browser starts requesting the resource from the server, cache, or local resource. The value is given in milliseconds relative to startTime, -1 if not available.
      • responseStart

        public double responseStart
        Time immediately after the browser receives the first byte of the response from the server, cache, or local resource. The value is given in milliseconds relative to startTime, -1 if not available.
      • responseEnd

        public double responseEnd
        Time immediately after the browser receives the last byte of the resource or immediately before the transport connection is closed, whichever comes first. The value is given in milliseconds relative to startTime, -1 if not available.
    • Constructor Detail

      • Timing

        public Timing()