+per #3746 Remote sharing of LevelDB for testing purposes
Further changes - remove obsolete identity checks in Eventsourced - fix wrong serialize-messages config in tests
This commit is contained in:
parent
4d05253391
commit
d0bc8a6400
20 changed files with 649 additions and 179 deletions
|
|
@ -26,7 +26,7 @@ trait AsyncWriteJournal extends Actor with AsyncReplay {
|
|||
private val resequencer = context.actorOf(Props[Resequencer])
|
||||
private var resequencerCounter = 1L
|
||||
|
||||
final def receive = {
|
||||
def receive = {
|
||||
case WriteBatch(persistentBatch, processor) ⇒
|
||||
val cctr = resequencerCounter
|
||||
def resequence(f: PersistentRepr ⇒ Any) = persistentBatch.zipWithIndex.foreach {
|
||||
|
|
@ -92,6 +92,9 @@ trait AsyncWriteJournal extends Actor with AsyncReplay {
|
|||
//#journal-plugin-api
|
||||
}
|
||||
|
||||
/**
|
||||
* INTERNAL API.
|
||||
*/
|
||||
private[persistence] object AsyncWriteJournal {
|
||||
case class Desequenced(msg: Any, snr: Long, target: ActorRef, sender: ActorRef)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue