Package org.axonframework.domain

Examples of org.axonframework.domain.EventRegistrationCallback


                            aggregate.getClass().getSimpleName(),
                            aggregate.getIdentifier());
            }
            return similarAggregate;
        }
        EventRegistrationCallback eventRegistrationCallback = new UoWEventRegistrationCallback(eventBus);

        registeredAggregates.put(aggregate, new AggregateEntry<T>(aggregate, saveAggregateCallback));

        // listen for new events registered in the aggregate
        aggregate.addEventRegistrationCallback(eventRegistrationCallback);
View Full Code Here

TOP

Related Classes of org.axonframework.domain.EventRegistrationCallback

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.