trait PersistenceIdsQuery extends ReadJournal
Ordering
- Alphabetic
- By Inheritance
Inherited
- PersistenceIdsQuery
- ReadJournal
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def persistenceIds(): Source[String, NotUsed]
Query all
PersistentActor
identifiers, i.e.Query all
PersistentActor
identifiers, i.e. as defined by thepersistenceId
of thePersistentActor
.The stream is not completed when it reaches the end of the currently used
persistenceIds
, but it continues to push newpersistenceIds
when new persistent actors are created. Corresponding query that is completed when it reaches the end of the currently currently usedpersistenceIds
is provided by CurrentPersistenceIdsQuery#currentPersistenceIds.
A plugin may optionally support this query by implementing this interface.