Interface ICurrentPersistenceIdsQuery
A plugin may optionally support this query by implementing this trait.
Namespace: Akka.Persistence.Query
Assembly: Akka.Persistence.Query.dll
Syntax
public interface ICurrentPersistenceIdsQuery : IReadJournal
Methods
| Improve this Doc View SourceCurrentPersistenceIds()
Same type of query as PersistenceIds() but the stream is completed immediately when it reaches the end of the "result set". Persistent actors that are created after the query is completed are not included in the stream.
Declaration
Source<string, NotUsed> CurrentPersistenceIds()
Returns
Type | Description |
---|---|
Source<String, NotUsed> |