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
It is not unfrequent to see event_store.read.stream('some_stream').each.to_a whenever you want fetch events besides iterating on them.
We've added first and last already for convenience, this seems like a good addition too. We've debated whether to include whole Enumerable before. I doubt now we need all of Enumerable and that is achievable via each returning Enumerator anyway.
The text was updated successfully, but these errors were encountered:
It is not unfrequent to see
event_store.read.stream('some_stream').each.to_a
whenever you want fetch events besides iterating on them.We've added
first
andlast
already for convenience, this seems like a good addition too. We've debated whether to include wholeEnumerable
before. I doubt now we need all ofEnumerable
and that is achievable viaeach
returningEnumerator
anyway.The text was updated successfully, but these errors were encountered: