blob: f87b215919f9dd3f33eecfa3da4f2792179c1f7d (
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
|
// **********************************************************************
//
// 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;
public interface RequestHandler extends CancellationHandler
{
RequestHandler connect();
RequestHandler update(RequestHandler previousHandler, RequestHandler newHandler);
void prepareBatchRequest(BasicStream out)
throws RetryException;
void finishBatchRequest(BasicStream out);
void abortBatchRequest();
int sendAsyncRequest(OutgoingAsyncBase out)
throws RetryException;
Reference getReference();
Ice.ConnectionI getConnection();
Ice.ConnectionI waitForConnection()
throws InterruptedException, RetryException;
}
|