I am currently using Esper within a Storm topology and I am aware that there is a method callback called update()
that is called when Esper produces a result.
I have been wondering what would happen if there is an error within the Esper engine itself.
Is there an error callback that I can override and catch the Exception
?
Or is my best bet to simply wrap the sendEvent()
call in a try-catch
and then deal with the Exception
accordingly?