Object

com.rbmhtechnology.eventuate.adapter.stream

DurableEventWriter

Related Doc: package stream

Permalink

object DurableEventWriter

Stream-based alternative to EventsourcedActor.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DurableEventWriter
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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. def apply(id: String, eventLog: ActorRef)(implicit system: ActorSystem): Graph[FlowShape[DurableEvent, DurableEvent], NotUsed]

    Permalink

    Creates an Akka Streams stage that writes input DurableEvents to eventLog and emits the written DurableEvents.

    Creates an Akka Streams stage that writes input DurableEvents to eventLog and emits the written DurableEvents. The input DurableEvent's emitterId is set to this writer's id. The processId, localLogId, localSequenceNr and systemTimestamp are set by eventLog. The event log also updates the local time of vectorTimestamp. All other input DurableEvent fields are written to the event log without modification. Behavior of the writer can be configured with:

    • eventuate.log.write-batch-size. Maximum size of DurableEvent batches written to the event log. Events are batched (with Flow.batch) if they are produced faster than this writer can write events.
    • eventuate.log.write-timeout. Timeout for writing events to the event log. A write timeout or another write failure causes this stage to fail.
    id

    global unique writer id.

    eventLog

    target event log.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

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

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  16. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  17. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped