Click or drag to resize
Akka.NETReplayFilterSettings Constructor (ReplayFilterMode, Int32, Int32, Boolean)
Initializes a new instance of the ReplayFilterSettings class.

Namespace:  Akka.Persistence.Sql.Common.Journal
Assembly:  Akka.Persistence.Sql.Common (in Akka.Persistence.Sql.Common.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public ReplayFilterSettings(
	ReplayFilterMode mode,
	int windowSize,
	int maxOldWriters,
	bool isDebug
)

Parameters

mode
Type: Akka.Persistence.JournalReplayFilterMode
The mode used when detecting invalid events.
windowSize
Type: SystemInt32
The size of the replay filter's buffer.
maxOldWriters
Type: SystemInt32
The maximum number of writerUuid to remember.
isDebug
Type: SystemBoolean
If set to true, debug logging is enabled for each replayed event.
See Also