Package org.axonframework.repository

Examples of org.axonframework.repository.ConcurrencyException


      // trigger retry, then return metadata for verification
        commandBus.subscribe(String.class.getName(), new CommandHandler<String>() {
            @Override
            public MetaData handle(CommandMessage<String> commandMessage, UnitOfWork unitOfWork) throws Throwable {
              if (Thread.currentThread() == testThread) {
                throw new ConcurrencyException("some retryable exception");
              } else {
                return commandMessage.getMetaData();
              }
            }
        });
View Full Code Here

TOP

Related Classes of org.axonframework.repository.ConcurrencyException

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.