All Downloads are FREE. Search and download functionalities are using the official Maven repository.

im.yagni.common.AtomicCounter.scala Maven / Gradle / Ivy

The newest version!
package im.yagni.common

class AtomicStringCounter(name: String = "", start: Long = 1) {
  private var count = start - 1

  def next = synchronized {
    count += 1
    name + count
  }
}

class AtomicLongCounter(start: Long = 1) {
  private var count = start - 1

  def next = synchronized {
    count += 1
    count
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy