blob: d58f8b0fd11d6658f905f70e2f89c3510dbb21b6 (
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
|
// This may look like C, but it's really -*- C++ -*-
//=============================================================================
/**
* @file Transport_Mux_Strategy.h
*
* $Id$
*
* @author Alexander Babu Arulanthu <alex@cs.wustl.edu>
*/
//=============================================================================
#ifndef TAO_TRANSPORT_MUX_STRATEGY_H
#define TAO_TRANSPORT_MUX_STRATEGY_H
#include "ace/pre.h"
#include "tao/IOPC.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class TAO_Reply_Dispatcher;
class TAO_Transport;
class TAO_Pluggable_Reply_Params;
/**
* @class TAO_Transport_Mux_Strategy
*
* @brief Strategy to determine whether the connection should be
* multiplexed for multiple requests or it is exclusive for a
* single request at a time.
*
*/
class TAO_Export TAO_Transport_Mux_Strategy
{
public:
/// Base class constructor.
TAO_Transport_Mux_Strategy (TAO_Transport *transport);
/// Base class destructor.
virtual ~TAO_Transport_Mux_Strategy (void);
/// Generate and return an unique request id for the current
/// invocation.
virtual CORBA::ULong request_id (void) = 0;
// = Bind and Find methods for the <Request ID, ReplyDispatcher>
// pairs.
/// Bind the dispatcher with the request id. Commonalities in the
/// derived class implementations is kept here.
virtual int bind_dispatcher (CORBA::ULong request_id,
TAO_Reply_Dispatcher *rd) = 0;
/**
* Unbind the dispatcher, the client is no longer waiting for the
* request, for example, because the request timedout.
* The strategy can (must) cleanup any resources associated with the
* request.
* A later reply for that request should be ignored.
*/
virtual void unbind_dispatcher (CORBA::ULong request_id) = 0;
/// Dispatch the reply for <request_id>, cleanup any resources
/// allocated for that request.
virtual int dispatch_reply (TAO_Pluggable_Reply_Params ¶ms) = 0;
/// Request has been just sent, but the reply is not received. Idle
/// the transport now.
virtual int idle_after_send (void) = 0;
/// Request is sent and the reply is received. Idle the transport
/// now.
virtual int idle_after_reply (void) = 0;
/// The transport object has closed the connection, inform all Reply
/// dispatchers and waiting strategies.
virtual void connection_closed (void) = 0;
protected:
/// Cache the transport reference.
TAO_Transport *transport_;
};
#include "ace/post.h"
#endif /* TRANSPORT_MUX_STRATEGY_H */
|