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

scalikejdbc.IsolationLevel.scala Maven / Gradle / Ivy

The newest version!
package scalikejdbc

sealed trait IsolationLevel extends Product with Serializable

object IsolationLevel {

  case object Serializable extends IsolationLevel
  case object RepeatableRead extends IsolationLevel
  case object ReadCommitted extends IsolationLevel
  case object ReadUncommitted extends IsolationLevel
  case object Default extends IsolationLevel

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy