Package org.wildfly.extension.rts.service

Examples of org.wildfly.extension.rts.service.InboundBridgeService


    }

    private void registerInboundBridgeService(final OperationContext context,
              final ServiceVerificationHandler verificationHandler, final List<ServiceController<?>> newControllers) {

        final InboundBridgeService inboundBridgeService = new InboundBridgeService();
        final ServiceBuilder<InboundBridgeService> inboundBridgeServiceBuilder = context
                .getServiceTarget()
                .addService(RTSSubsystemExtension.INBOUND_BRIDGE, inboundBridgeService)
                .addListener(verificationHandler)
                .addDependency(TxnServices.JBOSS_TXN_ARJUNA_RECOVERY_MANAGER);
View Full Code Here

TOP

Related Classes of org.wildfly.extension.rts.service.InboundBridgeService

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.