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

kalix.scalasdk.replicatedentity.ReplicatedSet.scala Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
/*
 * Copyright 2021 Lightbend Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package kalix.scalasdk.replicatedentity

import scala.collection.immutable.Set

import kalix.javasdk.impl.replicatedentity.ReplicatedSetImpl
import kalix.protocol.replicated_entity.ReplicatedEntityDelta

/**
 * A Replicated Set that allows both the addition and removal of elements in a set.
 *
 * A removal can only be done if all of the additions that added the key have been seen by this node. This means that,
 * for example if node 1 adds element A, and node 2 also adds element A, then node 1's addition is replicated to node 3,
 * and node 3 deletes it before node 2's addition is replicated, then the element will still be in the map because node
 * 2's addition had not yet been observed by node 3, and will cause the element to be re-added when node 3 receives it.
 * However, if both * additions had been replicated to node 3, then the element will be removed.
 *
 * Care needs to be taken to ensure that the serialized value of elements in the set is stable. For example, if using
 * protobufs, the serialized value of any maps contained in the protobuf is not stable, and can yield a different set of
 * bytes for the same logically equal element. Hence maps should be avoided. Additionally, some changes in protobuf
 * schemas which are backwards compatible from a protobuf perspective, such as changing from sint32 to int32, do result
 * in different serialized bytes, and so must be avoided.
 *
 * @tparam E
 *   The type of elements.
 */
class ReplicatedSet[E] private[scalasdk] (override val delegate: ReplicatedSetImpl[E]) extends InternalReplicatedData {

  /**
   * Get the number of elements in this set (its cardinality).
   *
   * @return
   *   the number of elements in the set
   */
  def size: Int = delegate.size

  /**
   * Check whether this set is empty.
   *
   * @return
   *   `true` if this set contains no elements
   */
  def isEmpty: Boolean = delegate.isEmpty

  /**
   * Elements of this set as a regular [[Set]]
   *
   * @return
   *   elements as [[Set]]
   */
  def elements: Set[E] =
    delegate.elementsSet

  /**
   * Check whether this set contains the given element.
   *
   * @param element
   *   element whose presence in this set is to be tested
   * @return
   *   `true` if this set contains the specified element
   */
  def apply(element: E): Boolean =
    delegate.contains(element)

  /**
   * Add an element to this set if it is not already present.
   *
   * @param element
   *   element to be added to this set
   * @return
   *   a new set with the additional element, or this unchanged set
   */
  def add(element: E): ReplicatedSet[E] =
    new ReplicatedSet(delegate.add(element))

  /**
   * Remove an element from this set if it is present.
   *
   * @param element
   *   element to be removed from this set
   * @return
   *   a new set without the removed element, or this unchanged set
   */
  def remove(element: E): ReplicatedSet[E] =
    new ReplicatedSet(delegate.remove(element))

  /**
   * Check whether this set contains all the given elements.
   *
   * @param elements
   *   collection to be checked for containment in this set
   * @return
   *   `true` if this set contains all the given elements
   */
  def containsAll(elements: Iterable[E]): Boolean =
    delegate.containsAll(elements)

  /**
   * Tests whether a predicate holds for all elements of this ReplicatedSet.
   *
   * @param predicate
   *   the predicate used to test elements.
   * @return
   *   `true` if this ReplicatedSet is empty or the given predicate `pred` holds for all elements of this ReplicatedSet,
   *   otherwise `false`.
   */
  def forall(predicate: E => Boolean): Boolean =
    delegate.forall(predicate)

  /**
   * Add elements to this set if they're not already present.
   *
   * 

Effectively the union of two sets. * * @param elements * collection containing elements to be added to this set * @return * a new set with the additional elements, or this unchanged set */ def addAll(elements: Iterable[E]): ReplicatedSet[E] = { new ReplicatedSet(delegate.addAll(elements)) } /** * Retain only the elements that are contained in the given collection. * *

Effectively the intersection of two sets. * * @param elements * collection containing elements to be retained in this set * @return * a new set with the retained elements, or this unchanged set */ def retainAll(elements: Iterable[E]): ReplicatedSet[E] = new ReplicatedSet(delegate.retainAll(elements)) /** * Remove elements from this set if they're present. * *

Effectively the asymmetric set difference of two sets. * * @param elements * collection containing elements to be removed from this set * @return * a new set without the removed elements, or this unchanged set */ def removeAll(elements: Iterable[E]): ReplicatedSet[E] = new ReplicatedSet(delegate.removeAll(elements)) /** * Remove all elements from this set. * * @return * a new empty set */ def clear(): ReplicatedSet[E] = new ReplicatedSet(delegate.clear()) final override type Self = ReplicatedSet[E] final override def resetDelta(): ReplicatedSet[E] = new ReplicatedSet(delegate.resetDelta()) final override def applyDelta: PartialFunction[ReplicatedEntityDelta.Delta, ReplicatedSet[E]] = delegate.applyDelta.andThen(new ReplicatedSet(_)) }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy