Package org.axonframework.commandhandling.gateway

Examples of org.axonframework.commandhandling.gateway.GatewayProxyFactory


        return registerCommandGateway(gatewayInterface, null);
    }

    @Override
    public <T> T registerCommandGateway(Class<T> gatewayInterface, final T stubImplementation) {
        GatewayProxyFactory factory = new StubAwareGatewayProxyFactory(stubImplementation,
                                                                       AnnotatedSagaTestFixture.this.commandBus);
        final T gateway = factory.createGateway(gatewayInterface);
        registerResource(gateway);
        return gateway;
    }
View Full Code Here

TOP

Related Classes of org.axonframework.commandhandling.gateway.GatewayProxyFactory

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.