!per #17918 Make deleteMessages reply msgs public

This commit is contained in:
Patrik Nordwall 2015-08-13 15:13:27 +02:00
parent 20352562e1
commit 6d0416f0aa
8 changed files with 21 additions and 15 deletions

View file

@ -335,6 +335,9 @@ Deleting messages in event sourcing based applications is typically either not u
up until the sequence number of the data held by that snapshot can be issued, to safely delete the previous events,
while still having access to the accumulated state during replays - by loading the snapshot.
The result of the ``deleteMessages`` request is signaled to the persistent actor with a ``DeleteMessagesSuccess``
message if the delete was successful or a ``DeleteMessagesFailure`` message if it failed.
Persistence status handling
---------------------------
Persisting, deleting and replaying messages can either succeed or fail.