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 void
akka$actor$Actor$_setter_$context_$eq(ActorContext x$1)
Deprecated.Scala API: Stores the context for this actor, including self, and sender.protected void
akka$actor$Actor$_setter_$self_$eq(ActorRef x$1)
Deprecated.The 'self' field holds the ActorRef for this actor.protected void
akka$persistence$journal$leveldb$LeveldbStore$_setter_$compactionIntervals_$eq(scala.collection.immutable.Map<java.lang.String,java.lang.Object> x$1)
Deprecated.protected void
akka$persistence$journal$leveldb$LeveldbStore$_setter_$config_$eq(com.typesafe.config.Config x$1)
Deprecated.protected void
akka$persistence$journal$leveldb$LeveldbStore$_setter_$leveldbDir_$eq(java.io.File x$1)
Deprecated.protected void
akka$persistence$journal$leveldb$LeveldbStore$_setter_$leveldbOptions_$eq(org.iq80.leveldb.Options x$1)
Deprecated.protected void
akka$persistence$journal$leveldb$LeveldbStore$_setter_$leveldbWriteOptions_$eq(org.iq80.leveldb.WriteOptions x$1)
Deprecated.protected void
akka$persistence$journal$leveldb$LeveldbStore$_setter_$nativeLeveldb_$eq(boolean x$1)
Deprecated.protected void
akka$persistence$journal$leveldb$LeveldbStore$_setter_$serialization_$eq(Serialization x$1)
Deprecated.protected void
akka$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.Config
config()
Deprecated.ActorContext
context()
Deprecated.Scala API: Stores the context for this actor, including self, and sender.org.iq80.leveldb.DB
leveldb()
Deprecated.void
leveldb_$eq(org.iq80.leveldb.DB x$1)
Deprecated.java.io.File
leveldbDir()
Deprecated.org.iq80.leveldb.Options
leveldbOptions()
Deprecated.org.iq80.leveldb.WriteOptions
leveldbWriteOptions()
Deprecated.boolean
nativeLeveldb()
Deprecated.Persistence
persistence()
Deprecated.com.typesafe.config.Config
prepareConfig()
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.ActorRef
self()
Deprecated.The 'self' field holds the ActorRef for this actor.Serialization
serialization()
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:Actor
Scala 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!
ActorContext
is the Scala API.getContext
returns aAbstractActor.ActorContext
, which is the Java API of the actor context.- Specified by:
akka$actor$Actor$_setter_$context_$eq
in interfaceActor
-
akka$actor$Actor$_setter_$self_$eq
protected final void akka$actor$Actor$_setter_$self_$eq(ActorRef x$1)
Deprecated.Description copied from interface:Actor
The '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_$eq
in 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_$eq
in 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_$eq
in 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_$eq
in 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_$eq
in 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_$eq
in 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_$eq
in 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_$eq
in 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_$eq
in interfaceLeveldbStore
-
compactionIntervals
public scala.collection.immutable.Map<java.lang.String,java.lang.Object> compactionIntervals()
Deprecated.- Specified by:
compactionIntervals
in interfaceCompactionSegmentManagement
- Specified by:
compactionIntervals
in interfaceLeveldbStore
-
config
public com.typesafe.config.Config config()
Deprecated.- Specified by:
config
in interfaceLeveldbStore
-
context
public ActorContext context()
Deprecated.Description copied from interface:Actor
Scala 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!
ActorContext
is the Scala API.getContext
returns aAbstractActor.ActorContext
, which is the Java API of the actor context.
-
leveldb
public org.iq80.leveldb.DB leveldb()
Deprecated.- Specified by:
leveldb
in interfaceLeveldbStore
-
leveldbDir
public java.io.File leveldbDir()
Deprecated.- Specified by:
leveldbDir
in interfaceLeveldbStore
-
leveldbOptions
public org.iq80.leveldb.Options leveldbOptions()
Deprecated.- Specified by:
leveldbOptions
in interfaceLeveldbStore
-
leveldbWriteOptions
public org.iq80.leveldb.WriteOptions leveldbWriteOptions()
Deprecated.- Specified by:
leveldbWriteOptions
in interfaceLeveldbStore
-
leveldb_$eq
public void leveldb_$eq(org.iq80.leveldb.DB x$1)
Deprecated.- Specified by:
leveldb_$eq
in interfaceLeveldbStore
-
nativeLeveldb
public boolean nativeLeveldb()
Deprecated.- Specified by:
nativeLeveldb
in interfaceLeveldbStore
-
persistence
public Persistence persistence()
Deprecated.- Specified by:
persistence
in interfaceWriteJournalBase
-
prepareConfig
public com.typesafe.config.Config prepareConfig()
Deprecated.- Specified by:
prepareConfig
in interfaceLeveldbStore
-
receive
public scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> receive()
Deprecated.Description copied from interface:Actor
Scala 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:Actor
The '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:
serialization
in interfaceLeveldbStore
-
-