Interface LoadEventQuery
-
- All Superinterfaces:
ReadJournal
- All Known Implementing Classes:
EventsBySliceFirehoseQuery
public interface LoadEventQuery extends ReadJournal
EventsBySliceQuerythat is using a timestamp based offset should also implement this query.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <Event> scala.concurrent.Future<EventEnvelope<Event>>loadEnvelope(java.lang.String persistenceId, long sequenceNr)Load a single event on demand.
-
-
-
Method Detail
-
loadEnvelope
<Event> scala.concurrent.Future<EventEnvelope<Event>> loadEnvelope(java.lang.String persistenceId, long sequenceNr)
Load a single event on demand. TheFutureis completed with aNoSuchElementExceptionif the event for the givenpersistenceIdandsequenceNrdoesn't exist.
-
-