I am subscribing to all streams using below statement:
Connection.SubscribeToAllFrom(null, false, EventAppeared, SubscriptionDropped)
When my subscription client goes offline for some reason, I want to subscribe to streams from last received event.
However, when ‘EventAppeared’ method is called I see that @event.OriginalPosition is always null.
How do I keep track of last event position applied?
I am using EventStore 1.0.1 and EventStore.Client 1.10
Thanks in advance.