t

akka.persistence.dynamodb.journal

DynamoDBJournalRequests

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
    Definition Classes
    DynamoDBRequests
  2. abstract val settings: DynamoDBConfig
    Definition Classes
    DynamoDBRequests

Concrete 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def batchWriteReq(items: Map[String, List[WriteRequest]]): BatchWriteItemRequest
    Definition Classes
    DynamoDBRequests
  6. def batchWriteReq(writes: Seq[WriteRequest]): BatchWriteItemRequest
    Definition Classes
    DynamoDBRequests
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. def deleteMessages(persistenceId: String, start: Long, end: Long): Future[Done]
  9. def doBatch(desc: (Seq[WriteRequest]) ⇒ String, writes: Seq[WriteRequest]): Future[Done]

    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
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. def putItem(item: Item): PutItemRequest
    Definition Classes
    DynamoDBRequests
  20. def removeHS(persistenceId: String): Future[Done]
  21. def removeLS(persistenceId: String): Future[Done]
  22. def setHS(persistenceId: String, to: Long): Future[PutItemResult]
  23. def setLS(persistenceId: String, to: Long): Future[PutItemResult]
  24. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  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( ... ) @native()
  29. def writeMessages(atomicWrite: AtomicWrite): Future[Try[Unit]]

    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]]]

    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