Interface ICurrentEventsByTagQuery
A plugin may optionally support this query by implementing this trait.
Namespace: Akka.Persistence.Query
Assembly: Akka.Persistence.Query.dll
Syntax
public interface ICurrentEventsByTagQuery : IReadJournal
Methods
| Improve this Doc View SourceCurrentEventsByTag(String, Offset)
Same type of query as EventsByTag(String, Offset) but the event stream is completed immediately when it reaches the end of the "result set". Events that are stored after the query is completed are not included in the event stream.
Declaration
Source<EventEnvelope, NotUsed> CurrentEventsByTag(string tag, Offset offset)
Parameters
Type | Name | Description |
---|---|---|
String | tag | |
Offset | offset |
Returns
Type | Description |
---|---|
Source<EventEnvelope, NotUsed> |