I have a workflow that runs every hour. This workflow needs to process all of our application's events of the last hour.
Today I leverage workflowContext.lastSuccessfulRun.startedAtEpochMs
to look at all of the events that were added since the last run started.
I'd like to be able to look at all the events that were added since the last run COMPLETED. This would make it easier to avoid processing the same event twice.
Thank you