I’m interested in periodically getting the latest events written to the store. ReadAllEventsForwardAsync seems to be a good candidate to be called from time to time.
I have to store the latest slice’s NextPosition between the calls to know where to start the next read from.
Can I
- save a position (EventStore.ClientAPI.Position)
- write x number of events
- scavenge (which potentially deleted some old streams)
and expect that afterwards if I call ReadAllEventsForwardAsync(saved_position), I’d get the events starting with the ones saved in point 2?
In other words: does scavenging mess up with the positions?
Cheers,
Jedrek