pekko/akka-distributed-data/src/main/scala/akka/cluster/ddata/Flag.scala

46 lines
1 KiB
Scala
Raw Normal View History

/**
2018-01-04 17:26:29 +00:00
* Copyright (C) 2009-2018 Lightbend Inc. <https://www.lightbend.com>
*/
package akka.cluster.ddata
object Flag {
/**
* `Flag` that is initialized to `false`.
*/
val empty = new Flag(false)
def apply(): Flag = empty
/**
* Java API: `Flag` that is initialized to `false`.
*/
def create(): Flag = empty
// unapply from case class
}
/**
* Implements a boolean flag CRDT that is initialized to `false` and
* can be switched to `true`. `true` wins over `false` in merge.
*
* This class is immutable, i.e. "modifying" methods return a new instance.
*/
@SerialVersionUID(1L)
final case class Flag(enabled: Boolean) extends ReplicatedData with ReplicatedDataSerialization {
type T = Flag
def switchOn: Flag =
if (enabled) this
else Flag(true)
override def merge(that: Flag): Flag =
if (that.enabled) that
else this
}
object FlagKey {
def create(id: String): Key[Flag] = FlagKey(id)
}
@SerialVersionUID(1L)
final case class FlagKey(_id: String) extends Key[Flag](_id) with ReplicatedDataSerialization