com.rbmhtechnology.eventuate.crdt

ORSetService

class ORSetService[A] extends CRDTService[ORSet[A], Set[A]]

Replicated ORSet CRDT service.

A

ORSet entry type

Linear Supertypes
CRDTService[ORSet[A], Set[A]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ORSetService
  2. CRDTService
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ORSetService(serviceId: String, log: ActorRef)(implicit system: ActorSystem, ops: CRDTServiceOps[ORSet[A], Set[A]])

    serviceId

    Unique id of this service.

    log

    Event log

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. def add(id: String, entry: A): Future[Set[A]]

    Adds entry to the OR-Set identified by id and returns the updated entry set.

  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  13. val log: ActorRef

    Event log

    Event log

    Definition Classes
    ORSetServiceCRDTService
  14. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  17. def op(id: String, operation: Any): Future[Set[A]]

    Updates the CRDT identified by id with given operation.

    Updates the CRDT identified by id with given operation. Returns the updated value of the CRDT.

    Attributes
    protected
    Definition Classes
    CRDTService
  18. implicit val ops: CRDTServiceOps[ORSet[A], Set[A]]

    CRDT service operations.

    CRDT service operations.

    Definition Classes
    ORSetServiceCRDTService
  19. def remove(id: String, entry: A): Future[Set[A]]

    Removes entry from the OR-Set identified by id and returns the updated entry set.

  20. val serviceId: String

    Unique id of this service.

    Unique id of this service.

    Definition Classes
    ORSetServiceCRDTService
  21. def start()(implicit system: ActorSystem): Unit

    Starts the CRDT service.

    Starts the CRDT service.

    Definition Classes
    CRDTService
  22. def stop(): Unit

    Stops the CRDT service.

    Stops the CRDT service.

    Definition Classes
    CRDTService
  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  24. def toString(): String

    Definition Classes
    AnyRef → Any
  25. def value(id: String): Future[Set[A]]

    Returns the current value of the CRDT identified by id.

    Returns the current value of the CRDT identified by id.

    Definition Classes
    CRDTService
  26. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CRDTService[ORSet[A], Set[A]]

Inherited from AnyRef

Inherited from Any

Ungrouped