src/Pure/Concurrent/counter.scala
author wenzelm
Sun, 28 Mar 2021 11:45:00 +0200
changeset 73503 eda1d95ef538
parent 73120 c3589f2dff31
child 75393 87ebf5a50283
permissions -rw-r--r--
misc tuning and clarification;

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