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

no.kodeworks.kvarg.util.IdGen.scala Maven / Gradle / Ivy

There is a newer version: 0.7
Show newest version
package no.kodeworks.kvarg.util

final class IdGen {
  var id: Long = IdGen.startId

  def getAndIncId = {
    val id = this.id
    this.id += 1L
    id
  }

  def setAndIncId(id: Long) {
    this.id = id + 1L
  }
}

object IdGen {
  val startId = 1L
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy