Click or drag to resize
Akka.NETIEventsByPersistenceIdQueryEventsByPersistenceId Method
Query events for a specific PersistentActor identified by persistenceId.

You can retrieve a subset of all events by specifying fromSequenceNr and toSequenceNr or use 0L and MaxValue respectively to retrieve all events.

The returned event stream should be ordered by sequence number.

The stream is not completed when it reaches the end of the currently stored events, but it continues to push new events when new events are persisted. Corresponding query that is completed when it reaches the end of the currently stored events is provided by CurrentEventsByPersistenceId(String, Int64, Int64).

Namespace:  Akka.Persistence.Query
Assembly:  Akka.Persistence.Query (in Akka.Persistence.Query.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
Source<EventEnvelope, NotUsed> EventsByPersistenceId(
	string persistenceId,
	long fromSequenceNr,
	long toSequenceNr
)

Parameters

persistenceId
Type: SystemString

[Missing <param name="persistenceId"/> documentation for "M:Akka.Persistence.Query.IEventsByPersistenceIdQuery.EventsByPersistenceId(System.String,System.Int64,System.Int64)"]

fromSequenceNr
Type: SystemInt64

[Missing <param name="fromSequenceNr"/> documentation for "M:Akka.Persistence.Query.IEventsByPersistenceIdQuery.EventsByPersistenceId(System.String,System.Int64,System.Int64)"]

toSequenceNr
Type: SystemInt64

[Missing <param name="toSequenceNr"/> documentation for "M:Akka.Persistence.Query.IEventsByPersistenceIdQuery.EventsByPersistenceId(System.String,System.Int64,System.Int64)"]

Return Value

Type: SourceEventEnvelope, NotUsed

[Missing <returns> documentation for "M:Akka.Persistence.Query.IEventsByPersistenceIdQuery.EventsByPersistenceId(System.String,System.Int64,System.Int64)"]

See Also