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

akka.util.WallClock.scala Maven / Gradle / Ivy

/*
 * Copyright (C) 2020 Lightbend Inc. 
 */

package akka.util

import akka.annotation.ApiMayChange
import java.util.concurrent.atomic.AtomicLong
import java.util.function.LongUnaryOperator

import akka.annotation.InternalApi

/**
 * A time source.
 */
@ApiMayChange
trait WallClock {
  def currentTimeMillis(): Long
}

object WallClock {

  /**
   * Always increasing time source. Based on `System.currentTimeMillis()` but
   * guaranteed to always increase for each invocation.
   */
  val AlwaysIncreasingClock: WallClock = new AlwaysIncreasingClock()
}

/**
 * INTERNAL API: Always increasing wall clock time.
 */
@InternalApi
private[akka] final class AlwaysIncreasingClock() extends AtomicLong with WallClock {

  override def currentTimeMillis(): Long = {
    val currentSystemTime = System.currentTimeMillis()
    updateAndGet {
      new LongUnaryOperator {
        override def applyAsLong(time: Long): Long = {
          if (currentSystemTime <= time) time + 1
          else currentSystemTime
        }
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy