IceInternal.Functional_TwowayCallback 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
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
package IceInternal;
public abstract class Functional_TwowayCallback extends IceInternal.Functional_CallbackBase implements Ice.TwowayCallback
{
public Functional_TwowayCallback(boolean responseCb,
Functional_GenericCallback1 exceptionCb,
Functional_BoolCallback sentCb)
{
super(responseCb, exceptionCb, sentCb);
}
protected Functional_TwowayCallback(Functional_GenericCallback1 exceptionCb,
Functional_BoolCallback sentCb)
{
super(exceptionCb, sentCb);
}
@Override
public void exception(Ice.SystemException ex)
{
if(_exceptionCb != null)
{
_exceptionCb.apply(ex);
}
}
@Override
public final void exception(Ice.LocalException ex)
{
if(_exceptionCb != null)
{
_exceptionCb.apply(ex);
}
}
}