Click or drag to resize
Akka.NETReplayFilterProps Method
TBD

Namespace:  Akka.Persistence.Journal
Assembly:  Akka.Persistence (in Akka.Persistence.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public static Props Props(
	IActorRef persistentActor,
	ReplayFilterMode mode,
	int windowSize,
	int maxOldWriters,
	bool debugEnabled
)

Parameters

persistentActor
Type: Akka.ActorIActorRef
TBD
mode
Type: Akka.Persistence.JournalReplayFilterMode
TBD
windowSize
Type: SystemInt32
TBD
maxOldWriters
Type: SystemInt32
TBD
debugEnabled
Type: SystemBoolean
TBD

Return Value

Type: Props
TBD
Exceptions
ExceptionCondition
ArgumentNullException This exception is thrown for a number of reasons. These include:
  • The specified windowSize is less than or equal to zero.
  • The specified maxOldWriters is less than or equal to zero.
  • The specified mode is Disabled.
See Also