Class UTCTime$

  • All Implemented Interfaces:
    java.io.Serializable

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

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

      Constructors 
      Constructor Description
      UTCTime$()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      UTCTime after​(scala.concurrent.duration.FiniteDuration duration)  
      UTCTime now()
      Obtains the PTP (Precision Time Protocol) synchronized current UTC time.
      • Methods inherited from class java.lang.Object

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

      • MODULE$

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

      • UTCTime$

        public UTCTime$()
    • Method Detail

      • now

        public UTCTime now()
        Obtains the PTP (Precision Time Protocol) synchronized current UTC time. 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 UTC scale
      • after

        public UTCTime after​(scala.concurrent.duration.FiniteDuration duration)