All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Ice._RouterDisp Maven / Gradle / Ivy

Go to download

Ice is a comprehensive RPC framework that helps you build distributed applications with minimal effort using familiar object-oriented idioms

The newest version!
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.10
//
// 
//
// Generated from file `Router.ice'
//
// Warning: do not edit this file.
//
// 
//

package Ice;

public abstract class _RouterDisp extends Ice.ObjectImpl implements Router
{
    private static final String[] _ids =
    {
        "::Ice::Object",
        "::Ice::Router"
    };

    public boolean ice_isA(String s)
    {
        return java.util.Arrays.binarySearch(_ids, s) >= 0;
    }

    public boolean ice_isA(String s, Current current)
    {
        return java.util.Arrays.binarySearch(_ids, s) >= 0;
    }

    public String[] ice_ids()
    {
        return _ids;
    }

    public String[] ice_ids(Current current)
    {
        return _ids;
    }

    public String ice_id()
    {
        return _ids[1];
    }

    public String ice_id(Current current)
    {
        return _ids[1];
    }

    public static String ice_staticId()
    {
        return _ids[1];
    }

    public final Ice.ObjectPrx getClientProxy(Ice.BooleanHolder hasRoutingTable)
    {
        return getClientProxy(hasRoutingTable, null);
    }

    public final Ice.ObjectPrx getServerProxy()
    {
        return getServerProxy(null);
    }

    public final Ice.ObjectPrx[] addProxies(Ice.ObjectPrx[] proxies)
    {
        return addProxies(proxies, null);
    }

    public static boolean _iceD_getClientProxy(Router obj, IceInternal.Incoming inS, Current current)
        throws UserException
    {
        _iceCheckMode(Ice.OperationMode.Idempotent, current.mode);
        inS.readEmptyParams();
        Ice.BooleanHolder iceP_hasRoutingTable = new Ice.BooleanHolder();
        Ice.ObjectPrx ret = obj.getClientProxy(iceP_hasRoutingTable, current);
        OutputStream ostr = inS.startWriteParams();
        ostr.writeProxy(ret);
        ostr.writeBool(1, iceP_hasRoutingTable.value);
        inS.endWriteParams();
        return true;
    }

    public static boolean _iceD_getServerProxy(Router obj, IceInternal.Incoming inS, Current current)
        throws UserException
    {
        _iceCheckMode(Ice.OperationMode.Idempotent, current.mode);
        inS.readEmptyParams();
        Ice.ObjectPrx ret = obj.getServerProxy(current);
        OutputStream ostr = inS.startWriteParams();
        ostr.writeProxy(ret);
        inS.endWriteParams();
        return true;
    }

    public static boolean _iceD_addProxies(Router obj, IceInternal.Incoming inS, Current current)
        throws UserException
    {
        _iceCheckMode(Ice.OperationMode.Idempotent, current.mode);
        InputStream istr = inS.startReadParams();
        Ice.ObjectPrx[] iceP_proxies;
        iceP_proxies = ObjectProxySeqHelper.read(istr);
        inS.endReadParams();
        Ice.ObjectPrx[] ret = obj.addProxies(iceP_proxies, current);
        OutputStream ostr = inS.startWriteParams();
        ObjectProxySeqHelper.write(ostr, ret);
        inS.endWriteParams();
        return true;
    }

    private final static String[] _all =
    {
        "addProxies",
        "getClientProxy",
        "getServerProxy",
        "ice_id",
        "ice_ids",
        "ice_isA",
        "ice_ping"
    };

    public boolean _iceDispatch(IceInternal.Incoming in, Ice.Current current)
        throws Ice.UserException
    {
        int pos = java.util.Arrays.binarySearch(_all, current.operation);
        if(pos < 0)
        {
            throw new OperationNotExistException(current.id, current.facet, current.operation);
        }

        switch(pos)
        {
            case 0:
            {
                return _iceD_addProxies(this, in, current);
            }
            case 1:
            {
                return _iceD_getClientProxy(this, in, current);
            }
            case 2:
            {
                return _iceD_getServerProxy(this, in, current);
            }
            case 3:
            {
                return _iceD_ice_id(this, in, current);
            }
            case 4:
            {
                return _iceD_ice_ids(this, in, current);
            }
            case 5:
            {
                return _iceD_ice_isA(this, in, current);
            }
            case 6:
            {
                return _iceD_ice_ping(this, in, current);
            }
        }

        assert(false);
        throw new OperationNotExistException(current.id, current.facet, current.operation);
    }

    protected void _iceWriteImpl(OutputStream ostr_)
    {
        ostr_.startSlice(ice_staticId(), -1, true);
        ostr_.endSlice();
    }

    protected void _iceReadImpl(InputStream istr_)
    {
        istr_.startSlice();
        istr_.endSlice();
    }

    public static final long serialVersionUID = 0L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy