Package org.springframework.sca.intercept

Examples of org.springframework.sca.intercept.OneWayAdvisor


//pf.addAdvisor(ExposeInvocationInterceptor.ADVISOR);
//pf.addAdvisor(new ExposeBeanNameAdvisor(smd.getServiceName()));
        // TODO enforce call by value

        if (!smd.getOneWayMethods().isEmpty()) {
            pf.addAdvisor(new OneWayAdvisor(smd, this.taskExecutor));
        }

        return pf.getProxy();
    }
View Full Code Here

TOP

Related Classes of org.springframework.sca.intercept.OneWayAdvisor

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.