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

com.wavesplatform.utils.SystemTime.scala Maven / Gradle / Ivy

The newest version!
package com.wavesplatform.utils

object SystemTime extends Time {
  def correctedTime(): Long = System.currentTimeMillis()

  @volatile
  private[this] var txTime: Long = 0

  def getTimestamp(): Long = {
    txTime = Math.max(correctedTime(), txTime + 1)
    txTime
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy