Click or drag to resize
Akka.NETReplayTaggedMessages Constructor
Initializes a new instance of the ReplayTaggedMessages 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 ReplayTaggedMessages(
	long fromOffset,
	long toOffset,
	long max,
	string tag,
	IActorRef replyTo
)

Parameters

fromOffset
Type: SystemInt64
TBD
toOffset
Type: SystemInt64
TBD
max
Type: SystemInt64
TBD
tag
Type: SystemString
TBD
replyTo
Type: Akka.ActorIActorRef
TBD
Exceptions
ExceptionCondition
ArgumentException This exception is thrown for a number of reasons. These include the following:
  • The specified fromOffset is less than zero.
  • The specified toOffset is less than or equal to zero.
  • The specified max is less than or equal to zero.
ArgumentNullException This exception is thrown when the specified tag is null or empty.
See Also