Click or drag to resize
Akka.NETReplayMessages Constructor
Initializes a new instance of the ReplayMessages class.

Namespace:  Akka.Persistence
Assembly:  Akka.Persistence (in Akka.Persistence.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public ReplayMessages(
	long fromSequenceNr,
	long toSequenceNr,
	long max,
	string persistenceId,
	IActorRef persistentActor
)

Parameters

fromSequenceNr
Type: SystemInt64
Sequence number where replay should start (inclusive).
toSequenceNr
Type: SystemInt64
Sequence number where replay should end (inclusive).
max
Type: SystemInt64
Maximum number of messages to be replayed.
persistenceId
Type: SystemString
Requesting persistent actor identifier.
persistentActor
Type: Akka.ActorIActorRef
Requesting persistent actor.
See Also