Search Results for

    Show / Hide Table of Contents

    Interface IEventsByPersistenceIdQuery

    A plugin may optionally support this query by implementing this trait.

    Namespace: Akka.Persistence.Query
    Assembly: Akka.Persistence.Query.dll
    Syntax
    public interface IEventsByPersistenceIdQuery : IReadJournal

    Methods

    | Edit this page View Source

    EventsByPersistenceId(string, long, long)

    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 long.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, long, long).

    Declaration
    Source<EventEnvelope, NotUsed> EventsByPersistenceId(string persistenceId, long fromSequenceNr, long toSequenceNr)
    Parameters
    Type Name Description
    string persistenceId
    long fromSequenceNr
    long toSequenceNr
    Returns
    Type Description
    Source<EventEnvelope, NotUsed>

    Extension Methods

    ObjectExtensions.IsDefaultForType<T>(T)
    ObjectExtensions.AsOption<T>(T)
    Extensions.AsInstanceOf<T>(object)
    In this article
    • githubEdit this page
    • View Source
    Back to top
    Contribute
    • Project Chat
    • Discussion Forum
    • Source Code
    Support
    • Akka.NET Support Plans
    • Akka.NET Observability Tools
    • Akka.NET Training & Consulting
    Maintained By
    • Petabridge - The Akka.NET Company
    • Learn Akka.NET