public interface CriteriaBuilder
CriteriaBuilder entry = eventStore.newCriteriaBuilder();
// Timestamps are stored as ISO 8601 Strings.
Criteria criteria = entry.property("timeStamp").greaterThan("2011-11-12");
eventStore.visitEvents(criteria, visitor);
Property property(String propertyName)
propertyName must hold a
valid value for the Event Store that returns that value. Typically, it requires the "indexed" values to be used,
such as event identifier, aggregate identifier, timestamp, etc.propertyName - The name of the property to evaluateCopyright © 2010-2014. All Rights Reserved.