blob: dc419a475ff4ea196dfe11a2905885b141602102 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// **********************************************************************
//
// Copyright (c) 2003-2010 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 class ProxyBatchOutgoingAsync extends BatchOutgoingAsync
{
public ProxyBatchOutgoingAsync(Ice.ObjectPrx prx, String operation, CallbackBase callback)
{
super(((Ice.ObjectPrxHelperBase)prx).__reference().getInstance(), operation, callback);
_proxy = prx;
}
public void
__send()
{
//
// We don't automatically retry if ice_flushBatchRequests fails. Otherwise, if some batch
// requests were queued with the connection, they would be lost without being noticed.
//
Ice._ObjectDel delegate = null;
int cnt = -1; // Don't retry.
try
{
delegate = ((Ice.ObjectPrxHelperBase)_proxy).__getDelegate(false);
int status = delegate.__getRequestHandler().flushAsyncBatchRequests(this);
if((status & AsyncStatus.Sent) > 0)
{
_sentSynchronously = true;
if((status & AsyncStatus.InvokeSentCallback) > 0)
{
__sent();
}
}
}
catch(Ice.LocalException __ex)
{
cnt = ((Ice.ObjectPrxHelperBase)_proxy).__handleException(delegate, __ex, null, cnt);
}
}
public Ice.ObjectPrx getProxy()
{
return _proxy;
}
private Ice.ObjectPrx _proxy;
}
|