All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scalapb.TimestampMethods.scala Maven / Gradle / Ivy

The newest version!
package scalapb

import java.time.Instant

trait TimestampMethods {
  def seconds: Long
  def nanos: Int

  final def asJavaInstant: Instant = Instant.ofEpochSecond(seconds).plusNanos(nanos.toLong)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy