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

im.yagni.driveby.tracking.TrackingIds.scala Maven / Gradle / Ivy

The newest version!
package im.yagni.driveby.tracking

import im.yagni.common.AtomicLongCounter

object TrackingIds {
  private val browserId = new AtomicLongCounter()
  private val specificationId = new AtomicLongCounter()
  private val exampleId = new AtomicLongCounter()

  def nextBrowserId = browserId.next
  def nextSpecificationId = specificationId.next
  def nextExampleId = exampleId.next
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy