com.zeroc.IceInternal.OutgoingAsyncBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice Show documentation
Show all versions of ice 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 com.zeroc.IceInternal;
//
// This non-generic base interface allows us to pass instances without causing "rawtypes" lint warnings.
//
public interface OutgoingAsyncBase
{
boolean sent();
boolean completed(com.zeroc.Ice.InputStream is);
boolean completed(com.zeroc.Ice.Exception ex);
void attachRemoteObserver(com.zeroc.Ice.ConnectionInfo info, com.zeroc.Ice.Endpoint endpt, int requestId);
void attachCollocatedObserver(com.zeroc.Ice.ObjectAdapter adapter, int requestId);
com.zeroc.Ice.OutputStream getOs();
void invokeSent();
void invokeSentAsync();
void invokeCompleted();
void invokeCompletedAsync();
void cancelable(CancellationHandler handler);
}