Class TAITime$

  • All Implemented Interfaces:
    java.io.Serializable, scala.Serializable

    public class TAITime$
    extends java.lang.Object
    implements scala.Serializable
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static TAITime$ MODULE$
      Static reference to the singleton instance of this Scala object.
    • Constructor Summary

      Constructors 
      Constructor Description
      TAITime$()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      TAITime now()
      Obtains the PTP (Precision Time Protocol) synchronized current time in TAI timescale.
      int offset()
      Fetches UTC to TAI offset by doing a native call to ntp_gettimex in case of a Linux machine.
      play.api.libs.json.Format<TAITime> taiTimeFormat​(play.api.libs.json.Format<java.time.Instant> instantFormat)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • MODULE$

        public static final TAITime$ MODULE$
        Static reference to the singleton instance of this Scala object.
    • Constructor Detail

      • TAITime$

        public TAITime$()
    • Method Detail

      • taiTimeFormat

        public play.api.libs.json.Format<TAITime> taiTimeFormat​(play.api.libs.json.Format<java.time.Instant> instantFormat)
      • now

        public TAITime now()
        Obtains the PTP (Precision Time Protocol) synchronized current time in TAI timescale. In case of a Linux machine, this will make a native call clock_gettime inorder to get time from the system clock with nanosecond precision In case of all the other operating systems, nanosecond precision is not supported, hence no native call is made.

        Returns:
        current time in TAI scale
      • offset

        public int offset()
        Fetches UTC to TAI offset by doing a native call to ntp_gettimex in case of a Linux machine. It ensures to get the latest offset as updated by the PTP Grandmaster.

        Returns:
        offset of UTC to TAI in seconds