src/Pure/Concurrent/counter.scala
author wenzelm
Sat, 20 May 2023 17:18:44 +0200
changeset 78085 dd7bb7f99ad5
parent 75393 87ebf5a50283
child 78243 0e221a8128e4
permissions -rw-r--r--
tuned signature;

/*  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
}