Class

akka.persistence.cassandra.journal

CassandraJournal

Related Doc: package journal

Permalink

class CassandraJournal extends AsyncWriteJournal with CassandraRecovery with CassandraStatements with NoSerializationVerificationNeeded

Linear Supertypes
NoSerializationVerificationNeeded, CassandraRecovery, CassandraDeletion, TaggedPreparedStatements, CassandraStatements, CassandraTagRecovery, AsyncWriteJournal, AsyncRecovery, WriteJournalBase, Actor, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CassandraJournal
  2. NoSerializationVerificationNeeded
  3. CassandraRecovery
  4. CassandraDeletion
  5. TaggedPreparedStatements
  6. CassandraStatements
  7. CassandraTagRecovery
  8. AsyncWriteJournal
  9. AsyncRecovery
  10. WriteJournalBase
  11. Actor
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CassandraJournal(cfg: Config)

    Permalink

Type Members

  1. type Receive = PartialFunction[Any, Unit]

    Permalink
    Definition Classes
    Actor

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 aroundPostRestart(reason: Throwable): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  5. def aroundPostStop(): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  6. def aroundPreRestart(reason: Throwable, message: Option[Any]): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  7. def aroundPreStart(): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  8. def aroundReceive(receive: actor.Actor.Receive, msg: Any): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
    Annotations
    @InternalApi()
  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def asyncDeleteMessagesTo(persistenceId: String, toSequenceNr: Long): Future[Unit]

    Permalink
    Definition Classes
    CassandraDeletion
  11. def asyncReadHighestSequenceNr(persistenceId: String, fromSequenceNr: Long): Future[Long]

    Permalink

    It is assumed that this is only called during a replay and if fromSequenceNr == highest then asyncReplayMessages won't be called.

    It is assumed that this is only called during a replay and if fromSequenceNr == highest then asyncReplayMessages won't be called. In that case the tag progress is updated in here rather than during replay messages.

    Definition Classes
    CassandraJournal → AsyncRecovery
  12. def asyncReplayMessages(persistenceId: String, fromSequenceNr: Long, toSequenceNr: Long, max: Long)(replayCallback: (PersistentRepr) ⇒ Unit): Future[Unit]

    Permalink
    Definition Classes
    CassandraRecovery
  13. def asyncWriteMessages(messages: Seq[AtomicWrite]): Future[Seq[Try[Unit]]]

    Permalink
    Definition Classes
    CassandraJournal → AsyncWriteJournal
  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. implicit val context: ActorContext

    Permalink
    Definition Classes
    Actor
  16. def createTagScanningTable: String

    Permalink
    Definition Classes
    CassandraStatements
  17. def createTagsProgressTable: String

    Permalink
    Definition Classes
    CassandraStatements
  18. implicit val ec: ExecutionContext

    Permalink
    Definition Classes
    CassandraJournal → CassandraDeletion → TaggedPreparedStatements
  19. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  25. implicit val materializer: ActorMaterializer

    Permalink
    Definition Classes
    CassandraJournal → CassandraDeletion
  26. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  29. val persistence: Persistence

    Permalink
    Definition Classes
    WriteJournalBase
  30. def postRestart(reason: Throwable): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  31. def postStop(): Unit

    Permalink
    Definition Classes
    CassandraJournal → Actor
  32. def preRestart(reason: Throwable, message: Option[Any]): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  33. def preStart(): Unit

    Permalink
    Definition Classes
    CassandraJournal → Actor
  34. def preparePersistentBatch(rb: Seq[PersistentEnvelope]): Seq[AtomicWrite]

    Permalink
    Attributes
    protected
    Definition Classes
    WriteJournalBase
  35. def preparedDeleteMessages: Future[PreparedStatement]

    Permalink
    Definition Classes
    CassandraDeletion
  36. def preparedInsertDeletedTo: Future[PreparedStatement]

    Permalink
    Definition Classes
    CassandraDeletion
  37. def preparedSelectDeletedTo: Future[PreparedStatement]

    Permalink
    Definition Classes
    CassandraDeletion
  38. def preparedSelectHighestSequenceNr: Future[PreparedStatement]

    Permalink
    Definition Classes
    CassandraDeletion
  39. def preparedSelectMessages: Future[PreparedStatement]

    Permalink
  40. def preparedSelectTagProgress: Future[PreparedStatement]

    Permalink
    Definition Classes
    TaggedPreparedStatements
  41. def preparedSelectTagProgressForPersistenceId: Future[PreparedStatement]

    Permalink
    Definition Classes
    TaggedPreparedStatements
  42. def preparedSelectTagScanningForPersistenceId: Future[PreparedStatement]

    Permalink
    Definition Classes
    TaggedPreparedStatements
  43. def preparedWriteInUse: Future[PreparedStatement]

    Permalink
  44. def preparedWriteMessage: Future[PreparedStatement]

    Permalink
  45. def preparedWriteMessageWithMeta: Future[PreparedStatement]

    Permalink
  46. def preparedWriteTagScanning: Future[PreparedStatement]

    Permalink
    Definition Classes
    TaggedPreparedStatements
  47. def preparedWriteToTagProgress: Future[PreparedStatement]

    Permalink
    Definition Classes
    TaggedPreparedStatements
  48. def preparedWriteToTagViewWithMeta: Future[PreparedStatement]

    Permalink
    Definition Classes
    TaggedPreparedStatements
  49. def preparedWriteToTagViewWithoutMeta: Future[PreparedStatement]

    Permalink
    Definition Classes
    TaggedPreparedStatements
  50. final def receive: PartialFunction[Any, Unit]

    Permalink
    Definition Classes
    AsyncWriteJournal → Actor
  51. def receivePluginInternal: Receive

    Permalink
    Definition Classes
    CassandraJournal → AsyncWriteJournal
  52. final val receiveWriteJournal: actor.Actor.Receive

    Permalink
    Definition Classes
    AsyncWriteJournal
  53. implicit final val self: ActorRef

    Permalink
    Definition Classes
    Actor
  54. final def sender(): ActorRef

    Permalink
    Definition Classes
    Actor
  55. val session: CassandraSession

    Permalink
    Definition Classes
    CassandraJournal → CassandraDeletion → TaggedPreparedStatements
  56. def supervisorStrategy: SupervisorStrategy

    Permalink
    Definition Classes
    Actor
  57. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  58. def tableName: String

    Permalink
    Attributes
    protected
    Definition Classes
    CassandraStatements
  59. val tagWrites: Option[ActorRef]

    Permalink
    Attributes
    protected
  60. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  61. lazy val transportInformation: Option[Information]

    Permalink
    Attributes
    protected
  62. def unhandled(message: Any): Unit

    Permalink
    Definition Classes
    Actor
  63. final def wait(): Unit

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

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

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

Inherited from NoSerializationVerificationNeeded

Inherited from CassandraRecovery

Inherited from CassandraDeletion

Inherited from TaggedPreparedStatements

Inherited from CassandraStatements

Inherited from CassandraTagRecovery

Inherited from AsyncWriteJournal

Inherited from AsyncRecovery

Inherited from WriteJournalBase

Inherited from Actor

Inherited from AnyRef

Inherited from Any

Ungrouped