Trait

akka.persistence.dynamodb.journal

DynamoDBJournalRequests

Related Doc: package journal

Permalink

trait DynamoDBJournalRequests extends DynamoDBRequests

Self Type
DynamoDBJournal
Linear Supertypes
DynamoDBRequests, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DynamoDBJournalRequests
  2. DynamoDBRequests
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def dynamo: DynamoDBHelper

    Permalink
    Definition Classes
    DynamoDBRequests
  2. abstract val settings: DynamoDBConfig

    Permalink
    Definition Classes
    DynamoDBRequests

Concrete 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. def batchWriteReq(items: Map[String, List[WriteRequest]]): BatchWriteItemRequest

    Permalink
    Definition Classes
    DynamoDBRequests
  6. def batchWriteReq(writes: Seq[WriteRequest]): BatchWriteItemRequest

    Permalink
    Definition Classes
    DynamoDBRequests
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def deleteMessages(persistenceId: String, start: Long, end: Long): Future[Done]

    Permalink
  9. def doBatch(desc: (Seq[WriteRequest]) ⇒ String, writes: Seq[WriteRequest]): Future[Done]

    Permalink

    Execute the given WriteRequests in batches of MaxBatchWrite, ignoring and logging all errors.

    Execute the given WriteRequests in batches of MaxBatchWrite, ignoring and logging all errors. The returned Future never fails.

    Definition Classes
    DynamoDBRequests
  10. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  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 putItem(item: Item): PutItemRequest

    Permalink
    Definition Classes
    DynamoDBRequests
  20. def removeHS(persistenceId: String): Future[Done]

    Permalink
  21. def removeLS(persistenceId: String): Future[Done]

    Permalink
  22. def setHS(persistenceId: String, to: Long): Future[PutItemResult]

    Permalink
  23. def setLS(persistenceId: String, to: Long): Future[PutItemResult]

    Permalink
  24. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. def writeMessages(atomicWrite: AtomicWrite): Future[Try[Unit]]

    Permalink

    Write all PersistentRepr in the AtomicWrite provided

    Write all PersistentRepr in the AtomicWrite provided

    If there are any errors serializing (preparing the batch writes), then we must return a Future.success(Failure) as the result. This is needed to be compliant with Akka Persistence 2.4

    atomicWrite

    Contains a list of persistentRepr that need to be persisted atomically

    returns

    a successfully completed Future that contains either a Success or Failure

  30. def writeMessages(writes: Seq[AtomicWrite]): Future[List[Try[Unit]]]

    Permalink

    Write all messages in a sequence of AtomicWrites.

    Write all messages in a sequence of AtomicWrites. Care must be taken to not have concurrent writes happening that touch the highest sequence number. The current implementation is the simplest with this guarantee in that it will run each AtomicWrite in sequence without even batching those that could be batched. The most common case is that there is just one message in total anyway.

Inherited from DynamoDBRequests

Inherited from AnyRef

Inherited from Any

Ungrouped