Ice.Callback_Object_ice_id 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.
//
package Ice;
/**
* Callback object for {@link ObjectPrx#begin_ice_id}.
**/
public abstract class Callback_Object_ice_id extends IceInternal.TwowayCallback
implements Ice.TwowayCallbackArg1
{
/**
* Called when the invocation completes successfully.
*
* @param ret The Slice type id of the most-derived interface supported by the target object.
**/
@Override
public abstract void response(String ret);
@Override
public final void _iceCompleted(AsyncResult result)
{
ObjectPrxHelperBase._iceI_ice_id_completed(this, result);
}
}