| ReplayFilterProps 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
)
static member Props :
persistentActor : IActorRef *
mode : ReplayFilterMode *
windowSize : int *
maxOldWriters : int *
debugEnabled : bool -> Props
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:
PropsTBD
Exceptions Exception | Condition |
---|
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