1 //
2 // Copyright (c) ZeroC, Inc. All rights reserved.
3 //
4 
5 package com.zeroc.IceInternal;
6 
7 public interface ResponseHandler
8 {
sendResponse(int requestId, com.zeroc.Ice.OutputStream os, byte status, boolean amd)9     void sendResponse(int requestId, com.zeroc.Ice.OutputStream os, byte status, boolean amd);
sendNoResponse()10     void sendNoResponse();
systemException(int requestId, com.zeroc.Ice.SystemException ex, boolean amd)11     boolean systemException(int requestId, com.zeroc.Ice.SystemException ex, boolean amd);
invokeException(int requestId, com.zeroc.Ice.LocalException ex, int invokeNum, boolean amd)12     void invokeException(int requestId, com.zeroc.Ice.LocalException ex, int invokeNum, boolean amd);
13 }
14