Package org.osoa.sca

Examples of org.osoa.sca.CallableReference


    }

    public void runTest() {
        ServiceReference<ExampleClient> ref = context.createSelfReference(ExampleClient.class);
        ref.getService().sayHello("Jack");
        CallableReference result = myService.hello("Jill", ref);
        if (result != null) {
            ((CallableReference<ExampleClient>)result).getService().sayHello("John");
        }
        result = myService.hello("Jane", null);
        if (result != null) {
View Full Code Here

TOP

Related Classes of org.osoa.sca.CallableReference

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.