Package org.apache.tuscany.sca.itest.conversational

Examples of org.apache.tuscany.sca.itest.conversational.Gamma.start()


    public CallableReference<Gamma> getRef(int param) {
        ServiceReference<Gamma> gammaRef = componentContext
                .getServiceReference(Gamma.class, "gamma");
        Gamma g = gammaRef.getService();
        g.start(param);
        return gammaRef;
    }
}
View Full Code Here


    public Gamma gamma;

    public CallableReference<Gamma> getRef(int param) {
        ServiceReference<Gamma> gammaRef = componentContext.getServiceReference(Gamma.class, "gamma");
        Gamma g = gammaRef.getService();
        g.start(param);
        return gammaRef;
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.