Reading events
Specifying read scope
You could use a specification pattern to prepare a read scope. The read scope defines what domain events will be read.
The available specification methods are:
stream(stream_name)- specify the name of a stream to read. If no stream is specified, a global stream (all domain events) will be read.from(start)- specify the starting point (event id) for read operation. This will read all domain events after (but not including) the specified domain event id.to(stop)- specify the stop point (event id) for the read operation. This will read all domain events up until (but not including) the specified domain event id.forward- reading direction, from oldest to newest domain events.backward- reading direction, from newest to oldest domain events.limit(count)- maximum number of events to read.in_batches(batch_size)- read will be performed in batches of the specified size. RailsEventStore never reads all domain events at once. Even if you don't specify a batch size, the read operation will be performed in batches of 100.of_type(types)- read only specified types of domain events, ignoring all others.older_than(time)- read events that occurred before given timeolder_than_or_equal(time)- read events that occurred on or before given timenewer_than(time)- read events that occurred later than given timenewer_than_or_equal(time)- read events that occurred on or later than given timebetween(time_range)- read events that occurred within given time range
The read scope could be defined by chaining the specification methods, e.g.:
scope = client.read
.stream('GoldCustomers')
.backward
.limit(100)
.of_type([Customer::GoldStatusGranted])
When the read scope is defined, several methods can be used to get the data:
count- returns total number of domain events to be read.each- returns an enumerator for all domain events in the read scope.each_batch- returns an enumerator of batches of specified size (or 100 if no batch size has been specified).to_a- returns an array with all domain events from the scope, equal toeach.to_a.first- returns the first domain event from the read scope.last- returns the last domain event from the read scope.event(event_id)- return an event of a given id if found in the read scope, otherwisenil.event!(event_id)- return an event of a given id if found in the read scope, otherwise raisesRubyEventStore::EventNotfounderror.events(event_ids)- returns a list of domain events of given ids found in the read scope. If there is no event for one or more provided event id, that id will be ignored (not all domain events must be found).
Examples
Reading a stream's events forward — starting from the first event
stream_name = "order_1"
count = 40
client.read.stream(stream_name).limit(count).to_a