Package org.axonframework.eventstore.jpa

Examples of org.axonframework.eventstore.jpa.JpaEventStore$CursorBackedDomainEventStream


        assertNotNull("maxSnapshotsArchived is defined", maxSnapshotsArchived);
        assertEquals("maxSnapshotsArchived value", "2", maxSnapshotsArchived.getValue());
        PropertyValue batchSize = definition.getPropertyValues().getPropertyValue("batchSize");
        assertEquals("maxSnapshotsArchived value", "1000", batchSize.getValue());

        JpaEventStore jpaEventStore = beanFactory.getBean("eventStore", JpaEventStore.class);
        assertNotNull(jpaEventStore);
    }
View Full Code Here

TOP

Related Classes of org.axonframework.eventstore.jpa.JpaEventStore$CursorBackedDomainEventStream

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.