I have a running EvenHub which is listened by a windows service. Accidentally, WindowsService stopped working for 2 days. How I can read the data from EventHub where it stopped ? My OffSet setup will look like :
processorOptions.InitialOffsetProvider = (partionId) => DateTime.UtcNow;
I tried to start the windows service again, but its starting from now.
Any idea for this ?