| EventsourcedDeleteMessages Method |
Permanently deletes all persistent messages with sequence numbers less than or equal
toSequenceNr.
If the delete is successful a
DeleteMessagesSuccess will be sent to the actor.
If the delete fails a
DeleteMessagesFailure will be sent to the actor.
Namespace:
Akka.Persistence
Assembly:
Akka.Persistence (in Akka.Persistence.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public void DeleteMessages(
long toSequenceNr
)
member DeleteMessages :
toSequenceNr : int64 -> unit
Parameters
- toSequenceNr
- Type: SystemInt64
Upper sequence number bound of persistent messages to be deleted.
See Also