Package org.axonframework.commandhandling.interceptors

Examples of org.axonframework.commandhandling.interceptors.SerializationOptimizingInterceptor


        disruptor.handleExceptionsWith(new ExceptionHandler());

        EventHandlerGroup<CommandHandlingEntry> eventHandlerGroup = disruptor.handleEventsWith(commandHandlerInvokers);
        if (serializerThreads.length > 0) {
            eventHandlerGroup = eventHandlerGroup.then(serializerThreads);
            invokerInterceptors.add(new SerializationOptimizingInterceptor());
        }
        eventHandlerGroup.then(publishers);

        coolingDownPeriod = configuration.getCoolingDownPeriod();
        disruptor.start();
View Full Code Here

TOP

Related Classes of org.axonframework.commandhandling.interceptors.SerializationOptimizingInterceptor

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.