Class/Object

com.rbmhtechnology.eventuate.crdt.japi

CounterService

Related Docs: object CounterService | package japi

Permalink

class CounterService[A] extends CRDTService[Counter[A], A, A]

Java API of a replicated Counter CRDT service.

A

Counter value type.

Linear Supertypes
CRDTService[Counter[A], A, A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CounterService
  2. CRDTService
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CounterService(serviceId: String, log: ActorRef, system: ActorSystem)(implicit integral: Integral[A])

    Permalink

    serviceId

    Unique id of this service.

    log

    Event log.

    system

    Actor system.

Value Members

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. implicit def c: CRDTConverter[A, A]

    Permalink
    Attributes
    protected
    Definition Classes
    CounterServiceCRDTService
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. val delegate: crdt.CounterService[A]

    Permalink
    Attributes
    protected
    Definition Classes
    CounterServiceCRDTService
  8. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. implicit val integral: Integral[A]

    Permalink
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. val log: ActorRef

    Permalink

    Event log.

  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. def save(id: String): CompletionStage[SnapshotMetadata]

    Permalink

    Saves a snapshot of the CRDT identified by id.

    Saves a snapshot of the CRDT identified by id.

    Definition Classes
    CRDTService
  20. val serviceId: String

    Permalink

    Unique id of this service.

  21. def start(): Unit

    Permalink

    Starts the CRDT service.

    Starts the CRDT service.

    Definition Classes
    CRDTService
  22. def stop(): Unit

    Permalink

    Stops the CRDT service.

    Stops the CRDT service.

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

    Permalink
    Definition Classes
    AnyRef
  24. implicit val system: ActorSystem

    Permalink

    Actor system.

  25. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  26. def update(id: String, delta: A): CompletionStage[A]

    Permalink

    Adds delta (which can also be negative) to the counter identified by id and returns the updated counter value.

  27. def value(id: String): CompletionStage[A]

    Permalink

    Returns the current value of the CRDT identified by id.

    Returns the current value of the CRDT identified by id.

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CRDTService[Counter[A], A, A]

Inherited from AnyRef

Inherited from Any

Ungrouped