!per #17799 Remove support for non-permanent deletes

* The permanent flag in deleteMessages
* old records stored with deletion flag are still not
  replayed
This commit is contained in:
Patrik Nordwall 2015-06-25 07:44:52 +02:00
parent 8c47e01e9d
commit 6eea0ddae6
26 changed files with 65 additions and 104 deletions

View file

@ -128,8 +128,7 @@ trait SharedLeveldbPluginDocSpec {
class MyJournal extends AsyncWriteJournal {
def asyncWriteMessages(messages: immutable.Seq[AtomicWrite]): Future[immutable.Seq[Try[Unit]]] = ???
def asyncDeleteMessagesTo(persistenceId: String, toSequenceNr: Long,
permanent: Boolean): Future[Unit] = ???
def asyncDeleteMessagesTo(persistenceId: String, toSequenceNr: Long): Future[Unit] = ???
def asyncReplayMessages(persistenceId: String, fromSequenceNr: Long,
toSequenceNr: Long, max: Long)(
replayCallback: (PersistentRepr) => Unit): Future[Unit] = ???