Package akka.persistence.journal.leveldb
Class SharedLeveldbStore
- java.lang.Object
-
- akka.persistence.journal.leveldb.SharedLeveldbStore
-
- All Implemented Interfaces:
Actor,ActorLogging,AsyncRecovery,CompactionSegmentManagement,LeveldbCompaction,LeveldbIdMapping,LeveldbRecovery,LeveldbStore,WriteJournalBase
public class SharedLeveldbStore extends java.lang.Object implements LeveldbStore
Deprecated.Use another journal implementation or the in-mem journal in combination with the journal-proxy. Since 2.6.15.A LevelDB store that can be shared by multiple actor systems. The shared store must be set for each actor system that uses the store viaSharedLeveldbJournal.setStore. The shared LevelDB store is for testing only.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface akka.actor.Actor
Actor.emptyBehavior$, Actor.ignoringBehavior$
-
Nested classes/interfaces inherited from interface akka.persistence.journal.leveldb.LeveldbCompaction
LeveldbCompaction.TryCompactLeveldb, LeveldbCompaction.TryCompactLeveldb$
-
-
Constructor Summary
Constructors Constructor Description SharedLeveldbStore()Deprecated.SharedLeveldbStore(com.typesafe.config.Config cfg)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected voidakka$actor$Actor$_setter_$context_$eq(ActorContext x$1)Deprecated.Scala API: Stores the context for this actor, including self, and sender.protected voidakka$actor$Actor$_setter_$self_$eq(ActorRef x$1)Deprecated.The 'self' field holds the ActorRef for this actor.protected voidakka$persistence$journal$leveldb$LeveldbStore$_setter_$compactionIntervals_$eq(scala.collection.immutable.Map<java.lang.String,java.lang.Object> x$1)Deprecated.protected voidakka$persistence$journal$leveldb$LeveldbStore$_setter_$config_$eq(com.typesafe.config.Config x$1)Deprecated.protected voidakka$persistence$journal$leveldb$LeveldbStore$_setter_$leveldbDir_$eq(java.io.File x$1)Deprecated.protected voidakka$persistence$journal$leveldb$LeveldbStore$_setter_$leveldbOptions_$eq(org.iq80.leveldb.Options x$1)Deprecated.protected voidakka$persistence$journal$leveldb$LeveldbStore$_setter_$leveldbWriteOptions_$eq(org.iq80.leveldb.WriteOptions x$1)Deprecated.protected voidakka$persistence$journal$leveldb$LeveldbStore$_setter_$nativeLeveldb_$eq(boolean x$1)Deprecated.protected voidakka$persistence$journal$leveldb$LeveldbStore$_setter_$serialization_$eq(Serialization x$1)Deprecated.protected voidakka$persistence$journal$WriteJournalBase$_setter_$persistence_$eq(Persistence x$1)Deprecated.scala.collection.immutable.Map<java.lang.String,java.lang.Object>compactionIntervals()Deprecated.com.typesafe.config.Configconfig()Deprecated.ActorContextcontext()Deprecated.Scala API: Stores the context for this actor, including self, and sender.org.iq80.leveldb.DBleveldb()Deprecated.voidleveldb_$eq(org.iq80.leveldb.DB x$1)Deprecated.java.io.FileleveldbDir()Deprecated.org.iq80.leveldb.OptionsleveldbOptions()Deprecated.org.iq80.leveldb.WriteOptionsleveldbWriteOptions()Deprecated.booleannativeLeveldb()Deprecated.Persistencepersistence()Deprecated.com.typesafe.config.ConfigprepareConfig()Deprecated.scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit>receive()Deprecated.Scala API: This defines the initial actor behavior, it must return a partial function with the actor logic.ActorRefself()Deprecated.The 'self' field holds the ActorRef for this actor.Serializationserialization()Deprecated.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface akka.actor.Actor
aroundPostRestart, aroundPostStop, aroundPreRestart, aroundPreStart, aroundReceive, postRestart, preRestart, sender, supervisorStrategy, unhandled
-
Methods inherited from interface akka.actor.ActorLogging
_log_$eq, log
-
Methods inherited from interface akka.persistence.journal.leveldb.CompactionSegmentManagement
compactionInterval, compactionLimit, compactionSegment, isCompactionEnabled, isCompactionRequired, latestCompactionSegment, latestCompactionSegments_$eq, mustCompact, updateCompactionSegment
-
Methods inherited from interface akka.persistence.journal.leveldb.LeveldbCompaction
receiveCompactionInternal, tryCompactOnDelete
-
Methods inherited from interface akka.persistence.journal.leveldb.LeveldbIdMapping
allPersistenceIds, idMap_$eq, isNewPersistenceId, numericId, readIdMap, readIdMap, writeIdMapping
-
Methods inherited from interface akka.persistence.journal.leveldb.LeveldbRecovery
asyncReadHighestSequenceNr, asyncReplayMessages, asyncReplayTaggedMessages, readHighestSequenceNr, replayMessages, replayTaggedMessages
-
Methods inherited from interface akka.persistence.journal.leveldb.LeveldbStore
addAllPersistenceIdsSubscriber, addPersistenceIdSubscriber, addTagSubscriber, addToMessageBatch, allPersistenceIdsSubscribers_$eq, asyncDeleteMessagesTo, asyncWriteMessages, hasAllPersistenceIdsSubscribers, hasPersistenceIdSubscribers, hasTagSubscribers, leveldbFactory, leveldbReadOptions, leveldbSnapshot, newPersistenceIdAdded, nextTagSequenceNr, notifyPersistenceIdChange, notifyTagChange, persistentFromBytes, persistentToBytes, postStop, preStart, removeSubscriber, super$postStop, super$preStart, tagAsPersistenceId, tagNumericId, tagSequenceNr_$eq, withBatch, withIterator
-
Methods inherited from interface akka.persistence.journal.WriteJournalBase
adaptFromJournal, adaptToJournal, preparePersistentBatch
-
-
-
-
Method Detail
-
akka$actor$Actor$_setter_$context_$eq
protected void akka$actor$Actor$_setter_$context_$eq(ActorContext x$1)
Deprecated.Description copied from interface:ActorScala API: Stores the context for this actor, including self, and sender. It is implicit to support operations such asforward.WARNING: Only valid within the Actor itself, so do not close over it and publish it to other threads!
ActorContextis the Scala API.getContextreturns aAbstractActor.ActorContext, which is the Java API of the actor context.- Specified by:
akka$actor$Actor$_setter_$context_$eqin interfaceActor
-
akka$actor$Actor$_setter_$self_$eq
protected final void akka$actor$Actor$_setter_$self_$eq(ActorRef x$1)
Deprecated.Description copied from interface:ActorThe 'self' field holds the ActorRef for this actor. Can be used to send messages to itself:self ! message
- Specified by:
akka$actor$Actor$_setter_$self_$eqin interfaceActor
-
akka$persistence$journal$WriteJournalBase$_setter_$persistence_$eq
protected void akka$persistence$journal$WriteJournalBase$_setter_$persistence_$eq(Persistence x$1)
Deprecated.- Specified by:
akka$persistence$journal$WriteJournalBase$_setter_$persistence_$eqin interfaceWriteJournalBase
-
akka$persistence$journal$leveldb$LeveldbStore$_setter_$compactionIntervals_$eq
protected void akka$persistence$journal$leveldb$LeveldbStore$_setter_$compactionIntervals_$eq(scala.collection.immutable.Map<java.lang.String,java.lang.Object> x$1)
Deprecated.- Specified by:
akka$persistence$journal$leveldb$LeveldbStore$_setter_$compactionIntervals_$eqin interfaceLeveldbStore
-
akka$persistence$journal$leveldb$LeveldbStore$_setter_$config_$eq
protected void akka$persistence$journal$leveldb$LeveldbStore$_setter_$config_$eq(com.typesafe.config.Config x$1)
Deprecated.- Specified by:
akka$persistence$journal$leveldb$LeveldbStore$_setter_$config_$eqin interfaceLeveldbStore
-
akka$persistence$journal$leveldb$LeveldbStore$_setter_$leveldbDir_$eq
protected void akka$persistence$journal$leveldb$LeveldbStore$_setter_$leveldbDir_$eq(java.io.File x$1)
Deprecated.- Specified by:
akka$persistence$journal$leveldb$LeveldbStore$_setter_$leveldbDir_$eqin interfaceLeveldbStore
-
akka$persistence$journal$leveldb$LeveldbStore$_setter_$leveldbOptions_$eq
protected void akka$persistence$journal$leveldb$LeveldbStore$_setter_$leveldbOptions_$eq(org.iq80.leveldb.Options x$1)
Deprecated.- Specified by:
akka$persistence$journal$leveldb$LeveldbStore$_setter_$leveldbOptions_$eqin interfaceLeveldbStore
-
akka$persistence$journal$leveldb$LeveldbStore$_setter_$leveldbWriteOptions_$eq
protected void akka$persistence$journal$leveldb$LeveldbStore$_setter_$leveldbWriteOptions_$eq(org.iq80.leveldb.WriteOptions x$1)
Deprecated.- Specified by:
akka$persistence$journal$leveldb$LeveldbStore$_setter_$leveldbWriteOptions_$eqin interfaceLeveldbStore
-
akka$persistence$journal$leveldb$LeveldbStore$_setter_$nativeLeveldb_$eq
protected void akka$persistence$journal$leveldb$LeveldbStore$_setter_$nativeLeveldb_$eq(boolean x$1)
Deprecated.- Specified by:
akka$persistence$journal$leveldb$LeveldbStore$_setter_$nativeLeveldb_$eqin interfaceLeveldbStore
-
akka$persistence$journal$leveldb$LeveldbStore$_setter_$serialization_$eq
protected void akka$persistence$journal$leveldb$LeveldbStore$_setter_$serialization_$eq(Serialization x$1)
Deprecated.- Specified by:
akka$persistence$journal$leveldb$LeveldbStore$_setter_$serialization_$eqin interfaceLeveldbStore
-
compactionIntervals
public scala.collection.immutable.Map<java.lang.String,java.lang.Object> compactionIntervals()
Deprecated.- Specified by:
compactionIntervalsin interfaceCompactionSegmentManagement- Specified by:
compactionIntervalsin interfaceLeveldbStore
-
config
public com.typesafe.config.Config config()
Deprecated.- Specified by:
configin interfaceLeveldbStore
-
context
public ActorContext context()
Deprecated.Description copied from interface:ActorScala API: Stores the context for this actor, including self, and sender. It is implicit to support operations such asforward.WARNING: Only valid within the Actor itself, so do not close over it and publish it to other threads!
ActorContextis the Scala API.getContextreturns aAbstractActor.ActorContext, which is the Java API of the actor context.
-
leveldb
public org.iq80.leveldb.DB leveldb()
Deprecated.- Specified by:
leveldbin interfaceLeveldbStore
-
leveldbDir
public java.io.File leveldbDir()
Deprecated.- Specified by:
leveldbDirin interfaceLeveldbStore
-
leveldbOptions
public org.iq80.leveldb.Options leveldbOptions()
Deprecated.- Specified by:
leveldbOptionsin interfaceLeveldbStore
-
leveldbWriteOptions
public org.iq80.leveldb.WriteOptions leveldbWriteOptions()
Deprecated.- Specified by:
leveldbWriteOptionsin interfaceLeveldbStore
-
leveldb_$eq
public void leveldb_$eq(org.iq80.leveldb.DB x$1)
Deprecated.- Specified by:
leveldb_$eqin interfaceLeveldbStore
-
nativeLeveldb
public boolean nativeLeveldb()
Deprecated.- Specified by:
nativeLeveldbin interfaceLeveldbStore
-
persistence
public Persistence persistence()
Deprecated.- Specified by:
persistencein interfaceWriteJournalBase
-
prepareConfig
public com.typesafe.config.Config prepareConfig()
Deprecated.- Specified by:
prepareConfigin interfaceLeveldbStore
-
receive
public scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> receive()
Deprecated.Description copied from interface:ActorScala API: This defines the initial actor behavior, it must return a partial function with the actor logic.
-
self
public final ActorRef self()
Deprecated.Description copied from interface:ActorThe 'self' field holds the ActorRef for this actor. Can be used to send messages to itself:self ! message
-
serialization
public Serialization serialization()
Deprecated.- Specified by:
serializationin interfaceLeveldbStore
-
-