Package org.axonframework.eventhandling

Examples of org.axonframework.eventhandling.EventListenerOrderComparator


     * @param orderResolver     The resolver providing the expected order of the listeners
     */
    public AsynchronousCluster(String name, Executor executor, UnitOfWorkFactory unitOfWorkFactory,
                               SequencingPolicy<? super EventMessage<?>> sequencingPolicy,
                               ErrorHandler errorHandler, OrderResolver orderResolver) {
        super(name, new EventListenerOrderComparator(orderResolver));
        Assert.notNull(errorHandler, "errorHandler may not be null");
        Assert.notNull(unitOfWorkFactory, "unitOfWorkFactory may not be null");
        Assert.notNull(sequencingPolicy, "sequencingPolicy may not be null");
        this.errorHandler = errorHandler;
        this.executor = executor;
View Full Code Here

TOP

Related Classes of org.axonframework.eventhandling.EventListenerOrderComparator

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.