src/Pure/Concurrent/counter.scala
author Lars Hupel <lars.hupel@mytum.de>
Tue, 14 Nov 2017 16:09:59 +0100
changeset 67076 fc877448602e
parent 64443 857acb970dfa
child 73120 c3589f2dff31
permissions -rw-r--r--
instantiation char :: full_exhaustive by Andreas Lochbihler

/*  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)
    count -= 1
    count
  }

  override def toString: String = count.toString
}