blob: 6f05157397abdb27be3ffb8621c9e554154e4e50 (
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 Ice;
/**
* <code>BlobjectAsync</code> is the base class for asynchronous dynamic
* dispatch servants. A server application derives a concrete servant
* class that implements the {@link BlobjectAsync#ice_invoke_async} method,
* which is called by the Ice run time to deliver every request on this
* object.
**/
public abstract class BlobjectAsync extends Ice.ObjectImpl
{
/**
* Dispatch an incoming request.
*
* @param cb The callback object through which the invocation's results
* must be delivered.
* @param inParams The encoded input parameters.
* @param current The Current object, which provides important information
* about the request, such as the identity of the target object and the
* name of the operation.
**/
public abstract void
ice_invoke_async(AMD_Object_ice_invoke cb, byte[] inParams, Current current);
public DispatchStatus
__dispatch(IceInternal.Incoming in, Current current)
{
byte[] inParams;
IceInternal.BasicStream is = in.is();
is.startReadEncaps();
int sz = is.getReadEncapsSize();
inParams = is.readBlob(sz);
is.endReadEncaps();
AMD_Object_ice_invoke cb = new _AMD_Object_ice_invoke(in);
try
{
ice_invoke_async(cb, inParams, current);
}
catch(java.lang.Exception ex)
{
cb.ice_exception(ex);
}
return DispatchStatus.DispatchAsync;
}
}
|