package
etcd
Type Members
-
class
EtcdClient extends AnyRef
-
case class
EtcdDirNode(key: String, nodes: Seq[EtcdNode], createdIndex: Option[Long], modifiedIndex: Option[Long], expiration: Option[Instant], ttl: Option[Long]) extends EtcdNode with Product with Serializable
-
case class
EtcdError(etcdIndex: Long, cause: String, errorCode: Int, index: Int, message: String) extends EtcdResult with Product with Serializable
-
sealed
trait
EtcdNode extends AnyRef
-
-
sealed
trait
EtcdResult extends AnyRef
-
case class
EtcdSuccess(etcdIndex: Long, action: String, node: EtcdNode, prevNode: Option[EtcdNode]) extends EtcdResult with Product with Serializable
-
case class
EtcdValueNode(key: String, value: String, createdIndex: Option[Long], modifiedIndex: Option[Long], expiration: Option[Instant], ttl: Option[Long]) extends EtcdNode with Product with Serializable