src/Pure/Concurrent/counter.scala
author wenzelm
Mon, 29 Aug 2022 19:26:27 +0200
changeset 76019 f3d8da992445
parent 75393 87ebf5a50283
child 78243 0e221a8128e4
permissions -rw-r--r--
provide cvc5-1.0.2 (inactive);

/*  Title:      Pure/Concurrent/counter.scala
    Author:     Makarius

Synchronized counter for unique identifiers < 0.

NB: ML ticks forwards, JVM ticks backwards.
*/

package isabelle


object Counter {
  type ID = Long
  def make(): Counter = new Counter
}

final class Counter private {
  private var count: Counter.ID = 0

  def apply(): Counter.ID = synchronized {
    require(count > java.lang.Long.MIN_VALUE, "counter overflow")
    count -= 1
    count
  }

  override def toString: String = count.toString
}