Package org.axonframework.domain

Examples of org.axonframework.domain.Message


    public void testResolveCorrelationData() throws Exception {
        Map<String, Object> metaData = new HashMap<String, Object>();
        metaData.put("key1", "value1");
        metaData.put("key2", "value2");
        metaData.put("key3", "value3");
        Message message = new GenericMessage<String>("payload", metaData);

        assertEquals(singletonMap("key1", "value1"),
                     new SimpleCorrelationDataProvider("key1").correlationDataFor(message));

        final Map<String, ?> actual2 = new SimpleCorrelationDataProvider("key1", "key2", "noExist", null)
View Full Code Here

TOP

Related Classes of org.axonframework.domain.Message

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.