Ice.RouterFinderPrx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice-compat Show documentation
Show all versions of ice-compat Show documentation
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;
/**
* This inferface should be implemented by services implementing the
* Ice::Router interface. It should be advertised through an Ice
* object with the identity `Ice/RouterFinder'. This allows clients to
* retrieve the router proxy with just the endpoint information of the
* service.
*
**/
public interface RouterFinderPrx extends ObjectPrx
{
/**
* Get the router proxy implemented by the process hosting this
* finder object. The proxy might point to several replicas.
*
* @return The router proxy.
*
**/
public RouterPrx getRouter();
/**
* Get the router proxy implemented by the process hosting this
* finder object. The proxy might point to several replicas.
*
* @param context The Context map to send with the invocation.
* @return The router proxy.
*
**/
public RouterPrx getRouter(java.util.Map context);
/**
* Get the router proxy implemented by the process hosting this
* finder object. The proxy might point to several replicas.
*
* @return The asynchronous result object.
**/
public AsyncResult begin_getRouter();
/**
* Get the router proxy implemented by the process hosting this
* finder object. The proxy might point to several replicas.
*
* @param context The Context map to send with the invocation.
* @return The asynchronous result object.
**/
public AsyncResult begin_getRouter(java.util.Map context);
/**
* Get the router proxy implemented by the process hosting this
* finder object. The proxy might point to several replicas.
*
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getRouter(Callback cb);
/**
* Get the router proxy implemented by the process hosting this
* finder object. The proxy might point to several replicas.
*
* @param context The Context map to send with the invocation.
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getRouter(java.util.Map context, Callback cb);
/**
* Get the router proxy implemented by the process hosting this
* finder object. The proxy might point to several replicas.
*
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getRouter(Callback_RouterFinder_getRouter cb);
/**
* Get the router proxy implemented by the process hosting this
* finder object. The proxy might point to several replicas.
*
* @param context The Context map to send with the invocation.
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getRouter(java.util.Map context, Callback_RouterFinder_getRouter cb);
/**
* Get the router proxy implemented by the process hosting this
* finder object. The proxy might point to several replicas.
*
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getRouter(IceInternal.Functional_GenericCallback1 responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb);
/**
* Get the router proxy implemented by the process hosting this
* finder object. The proxy might point to several replicas.
*
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @param sentCb The lambda sent callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getRouter(IceInternal.Functional_GenericCallback1 responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb,
IceInternal.Functional_BoolCallback sentCb);
/**
* Get the router proxy implemented by the process hosting this
* finder object. The proxy might point to several replicas.
*
* @param context The Context map to send with the invocation.
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getRouter(java.util.Map context,
IceInternal.Functional_GenericCallback1 responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb);
/**
* Get the router proxy implemented by the process hosting this
* finder object. The proxy might point to several replicas.
*
* @param context The Context map to send with the invocation.
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @param sentCb The lambda sent callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getRouter(java.util.Map context,
IceInternal.Functional_GenericCallback1 responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb,
IceInternal.Functional_BoolCallback sentCb);
/**
* Get the router proxy implemented by the process hosting this
* finder object. The proxy might point to several replicas.
*
* @param result The asynchronous result object.
* @return The router proxy.
*
**/
public RouterPrx end_getRouter(Ice.AsyncResult result);
}