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

spice.http.ConnectionStatus.scala Maven / Gradle / Ivy

There is a newer version: 0.5.14
Show newest version
package spice.http

sealed trait ConnectionStatus {
  lazy val name: String = getClass.getSimpleName.replace("$", "")

  override def toString: String = name
}

object ConnectionStatus {
  case object Closed extends ConnectionStatus
  case object Closing extends ConnectionStatus
  case object Connecting extends ConnectionStatus
  case object Open extends ConnectionStatus
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy