src/Pure/Concurrent/counter.scala
author wenzelm
Wed, 15 May 2013 21:46:07 +0200
changeset 52014 45929e0e1d73
parent 46712 8650d9a95736
child 52537 4b5941730bd8
permissions -rw-r--r--
more standard Isabelle/ML structures for global preferences; allow to add categories later on; allow to redefine preferences as usual for global tables, e.g. after reloading ML modules;

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

Synchronized counter for unique identifiers < 0.

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

package isabelle


object Counter
{
  type ID = Long
  def apply(): 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
  }
}