Package | Description |
---|---|
org.axonframework.eventhandling.replay | |
org.axonframework.eventstore.jdbc |
JDBC Implementation of the EventStore.
|
org.axonframework.eventstore.jdbc.criteria | |
org.axonframework.eventstore.jpa |
JPA Implementation of the EventStore.
|
org.axonframework.eventstore.jpa.criteria | |
org.axonframework.eventstore.management | |
org.axonframework.eventstore.mongo | |
org.axonframework.eventstore.mongo.criteria | |
org.axonframework.quickstart |
Modifier and Type | Method and Description |
---|---|
void |
ReplayingCluster.startReplay(Criteria criteria)
Start a replay process on the current thread, only reading events matching the given
criteria . |
Future<Void> |
ReplayingCluster.startReplay(Executor executor,
Criteria criteria)
Starts a replay process using the given
executor , only reading events matching the given
criteria . |
Modifier and Type | Method and Description |
---|---|
void |
JdbcEventStore.visitEvents(Criteria criteria,
EventVisitor visitor) |
Modifier and Type | Class and Description |
---|---|
class |
BinaryOperator
Implementation of a binary operator for the Jdbc Event Store.
|
class |
CollectionOperator
Abstract implementation to use for testing whether an item is present in a collection or not.
|
class |
Equals
Implementation of the EQUALS operator for a Jdbc Event Store.
|
class |
JdbcCriteria
Abstract implementation of the Criteria interface for a Jdbc Event Store.
|
class |
NotEquals
Implementations of the NOT EQUALS operator for a Jdbc Event Store.
|
class |
SimpleOperator
Implementation of all simple operators (i.e.
|
Modifier and Type | Method and Description |
---|---|
Criteria |
JdbcProperty.in(Object expression) |
Criteria |
JdbcProperty.notIn(Object expression) |
Modifier and Type | Method and Description |
---|---|
JdbcCriteria |
JdbcCriteria.and(Criteria criteria) |
JdbcCriteria |
JdbcCriteria.or(Criteria criteria) |
Modifier and Type | Method and Description |
---|---|
void |
JpaEventStore.visitEvents(Criteria criteria,
EventVisitor visitor) |
Modifier and Type | Class and Description |
---|---|
class |
JpaCriteria
Abstract implementation of the Criteria interface for a JPA Event Store.
|
Modifier and Type | Method and Description |
---|---|
Criteria |
JpaProperty.in(Object expression) |
Criteria |
JpaProperty.notIn(Object expression) |
Modifier and Type | Method and Description |
---|---|
JpaCriteria |
JpaCriteria.and(Criteria criteria) |
JpaCriteria |
JpaCriteria.or(Criteria criteria) |
Modifier and Type | Method and Description |
---|---|
Criteria |
Criteria.and(Criteria criteria)
Returns a criteria instance where both
this and given criteria must match. |
Criteria |
Property.greaterThan(Object expression)
Returns a criteria instance where the property must be "greater than" the given
expression . |
Criteria |
Property.greaterThanEquals(Object expression)
Returns a criteria instance where the property must be "greater than" or "equal to" the given
expression . |
Criteria |
Property.in(Object expression)
Returns a criteria instance where the property must be "in" the given
expression . |
Criteria |
Property.is(Object expression)
Returns a criteria instance where the property must "equal" the given
expression . |
Criteria |
Property.isNot(Object expression)
Returns a criteria instance where the property must be "not equal to" the given
expression . |
Criteria |
Property.lessThan(Object expression)
Returns a criteria instance where the property must be "less than" the given
expression . |
Criteria |
Property.lessThanEquals(Object expression)
Returns a criteria instance where the property must be "less than" or "equal to" the given
expression . |
Criteria |
Property.notIn(Object expression)
Returns a criteria instance where the property must be "not in" the given
expression . |
Criteria |
Criteria.or(Criteria criteria)
Returns a criteria instance where either
this or the given criteria must match. |
Modifier and Type | Method and Description |
---|---|
Criteria |
Criteria.and(Criteria criteria)
Returns a criteria instance where both
this and given criteria must match. |
Criteria |
Criteria.or(Criteria criteria)
Returns a criteria instance where either
this or the given criteria must match. |
void |
EventStoreManagement.visitEvents(Criteria criteria,
EventVisitor visitor)
Loads all events available in the event store that match the given
criteria and calls EventVisitor.doWithEvent(org.axonframework.domain.DomainEventMessage) for each event found. |
Modifier and Type | Method and Description |
---|---|
void |
MongoEventStore.visitEvents(Criteria criteria,
EventVisitor visitor) |
Modifier and Type | Class and Description |
---|---|
class |
And
Representation of an AND operator for Mongo selection criteria.
|
class |
CollectionCriteria
Implementation of Collection operators for the Mongo Criteria, such as "In" and "NotIn".
|
class |
MongoCriteria
Abstract class for Mongo-based criteria.
|
class |
Or
Represents the OR operator for use by the Mongo Event Store.
|
class |
SimpleMongoOperator
Implementation of the simple Mongo Operators (those without special structural requirements), such as Less Than,
Less Than Equals, etc.
|
Modifier and Type | Method and Description |
---|---|
Criteria |
MongoCriteria.and(Criteria criteria) |
Criteria |
MongoCriteria.or(Criteria criteria) |
Modifier and Type | Method and Description |
---|---|
Criteria |
MongoCriteria.and(Criteria criteria) |
Criteria |
MongoCriteria.or(Criteria criteria) |
Modifier and Type | Method and Description |
---|---|
void |
RunEventReplay.StubEventStore.visitEvents(Criteria criteria,
EventVisitor visitor) |
Copyright © 2010-2014. All Rights Reserved.