Package gcc.rmi.iiop

Examples of gcc.rmi.iiop.RemoteInterface


     * The adapter will obtain the object key and then determine which object instance to pass the
     * invocation to.
     */
    public void invoke( java.lang.String methodName, byte[] objectKey, gcc.rmi.iiop.ObjectInputStream input, gcc.rmi.iiop.ObjectOutputStream output )
    {
        RemoteInterface skeleton = getRemoteInterface();
        Object instance = getInstance( objectKey );

        if (instance != null)
        {
            skeleton.$invoke( methodName, objectKey, instance, input, output );
        }
        else
        {
            throw new org.omg.CORBA.OBJECT_NOT_EXIST(new String(objectKey));
        }
View Full Code Here

TOP

Related Classes of gcc.rmi.iiop.RemoteInterface

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.