summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/ConnectionRequestHandler.java
blob: 4dcf9db63e8aaaaac2ff62571940b3086e1d2537 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// **********************************************************************
//
// 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 class ConnectionRequestHandler implements RequestHandler
{
    @Override
    public void
    prepareBatchRequest(BasicStream out) throws RetryException {
        _connection.prepareBatchRequest(out);
    }

    @Override
    public void
    finishBatchRequest(BasicStream out) {
        _connection.finishBatchRequest(out, _compress);
    }

    @Override
    public void
    abortBatchRequest() {
        _connection.abortBatchRequest();
    }

    @Override
    public boolean
    sendRequest(OutgoingMessageCallback out)
            throws RetryException {
        //
        // Finished if sent and no response.
        //
        return out.send(_connection, _compress, _response) && !_response;
    }

    @Override
    public int
    sendAsyncRequest(OutgoingAsyncMessageCallback out)
            throws RetryException {
        return out.__send(_connection, _compress, _response);
    }

    @Override
    public boolean
    requestCanceled(OutgoingMessageCallback out, Ice.LocalException ex)
    {
        return _connection.requestCanceled(out, ex);
    }

    @Override
    public boolean
    asyncRequestCanceled(OutgoingAsyncMessageCallback outgoingAsync, Ice.LocalException ex)
    {
        return _connection.asyncRequestCanceled(outgoingAsync, ex);
    }

    @Override
    public Reference
    getReference()
    {
        return _reference;
    }

    @Override
    public Ice.ConnectionI
    getConnection()
    {
        return _connection;
    }

    @Override
    public Ice.ConnectionI
    waitForConnection()
    {
        return _connection;
    }

    public ConnectionRequestHandler(Reference ref, Ice.ConnectionI connection,
            boolean compress) {
        _reference = ref;
        _response = _reference.getMode() == Reference.ModeTwoway;
        _connection = connection;
        _compress = compress;
    }

    private final Reference _reference;
    private final boolean _response;
    private final Ice.ConnectionI _connection;
    private final boolean _compress;

}