You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 25, 2020. It is now read-only.
As Java heavily relies on iterators (e.g., simplified for-loop) it will usually never care about the fact that the EventStore iterators would have to be closed. Also users of the event store typically don't expect this kind of behavior. If possible the iterator returned by the event store should "close itself", i.e.,
close automatically if end has been reached (hasNext() == false) and
close itself automatically if not used anymore (should be possible when GC calls finalize())
The text was updated successfully, but these errors were encountered:
As Java heavily relies on iterators (e.g., simplified for-loop) it will usually never care about the fact that the EventStore iterators would have to be closed. Also users of the event store typically don't expect this kind of behavior. If possible the iterator returned by the event store should "close itself", i.e.,
The text was updated successfully, but these errors were encountered: