blob: baad0a45e91dbfd19b95eb3878e65b0b3f57f3cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// **********************************************************************
//
// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
package IceInternal;
import Ice.Instrumentation.InvocationObserver;
public interface RequestHandler
{
void prepareBatchRequest(BasicStream out)
throws LocalExceptionWrapper;
void finishBatchRequest(BasicStream out);
void abortBatchRequest();
Ice.ConnectionI sendRequest(Outgoing out)
throws LocalExceptionWrapper;
int sendAsyncRequest(OutgoingAsync out)
throws LocalExceptionWrapper;
boolean flushBatchRequests(BatchOutgoing out);
int flushAsyncBatchRequests(BatchOutgoingAsync out);
Reference getReference();
Ice.ConnectionI getConnection(boolean wait);
Outgoing getOutgoing(String operation, Ice.OperationMode mode, java.util.Map<String, String> context,
InvocationObserver observer)
throws LocalExceptionWrapper;
void reclaimOutgoing(Outgoing out);
}
|