Package org.axonframework.repository

Examples of org.axonframework.repository.NullLockManager


     * @param aggregateType           The type of aggregate stored in this repository.
     * @param aggregateTypeIdentifier The type identifier to store events with
     */
    public HybridJpaRepository(EntityManagerProvider entityManagerProvider,
                               Class<T> aggregateType, String aggregateTypeIdentifier) {
        this(entityManagerProvider, aggregateType, aggregateTypeIdentifier, new NullLockManager());
    }
View Full Code Here

TOP

Related Classes of org.axonframework.repository.NullLockManager

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.