blob: 5312665decd9e9bbe6202a8730037421c0608a54 (
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
|
// **********************************************************************
//
// Copyright (c) 2003-2013 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;
/**
* Base class for dynamic dispatch servants. A server application
* derives a concrete servant class from <code>Blobject</code> that
* implements the {@link Blobject#ice_invoke} method.
**/
public abstract class Blobject extends Ice.ObjectImpl
{
/**
* Dispatch an incoming request.
*
* @param inEncaps The encoded in-parameters for the operation.
* @param outEncaps The encoded out-paramaters and return value
* for the operation. The return value follows any out-parameters.
* @param current The Current object to pass to the operation.
* @return If the operation completed successfully, the return value
* is <code>true</code>. If the operation raises a user exception,
* the return value is <code>false</code>; in this case, <code>outEncaps</code>
* must contain the encoded user exception. If the operation raises an
* Ice run-time exception, it must throw it directly.
**/
public abstract boolean
ice_invoke(byte[] inEncaps, ByteSeqHolder outEncaps, Current current);
public DispatchStatus
__dispatch(IceInternal.Incoming in, Current current)
{
byte[] inEncaps;
ByteSeqHolder outEncaps = new ByteSeqHolder();
inEncaps = in.readParamEncaps();
boolean ok = ice_invoke(inEncaps, outEncaps, current);
in.__writeParamEncaps(outEncaps.value, ok);
if(ok)
{
return DispatchStatus.DispatchOK;
}
else
{
return DispatchStatus.DispatchUserException;
}
}
}
|