blob: 62574cecb76299d16a714339ce80d2ece56e022c (
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
|
// This may look like C, but it's really -*- C++ -*-
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO
//
// = DESCRIPTION
// Dispatch the reply appropriately.
//
// = AUTHOR
// Alexander Babu Arulanthu <alex@cs.wustl.edu>
//
// ============================================================================
#ifndef TAO_DII_REPLY_DISPATCHER_H
#define TAO_DII_REPLY_DISPATCHER_H
#include /**/ "ace/pre.h"
#include "dynamicinterface_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/orbconf.h"
#include "tao/Asynch_Reply_Dispatcher_Base.h"
namespace CORBA
{
class Request;
typedef Request *Request_ptr;
}
class TAO_ORB_Core;
/**
* @class TAO_DII_Deferred_Reply_Dispatcher
*
* @brief Reply dispatcher for DII deferred requests.
*/
class TAO_DynamicInterface_Export TAO_DII_Deferred_Reply_Dispatcher
: public TAO_Asynch_Reply_Dispatcher_Base
{
public:
TAO_DII_Deferred_Reply_Dispatcher (const CORBA::Request_ptr req,
TAO_ORB_Core *orb_core);
// = The Reply_Dispatcher methods
virtual int dispatch_reply (TAO_Pluggable_Reply_Params ¶m);
virtual void connection_closed (void);
/// The following methods are not needed for this class..
virtual void reply_timed_out (void) {}
virtual long schedule_timer (CORBA::ULong ,
const ACE_Time_Value &
ACE_ENV_ARG_DECL_NOT_USED)
{
return 0;
}
protected:
// Destructor.
~TAO_DII_Deferred_Reply_Dispatcher (void);
private:
/// Where the reply needs to go.
const CORBA::Request_ptr req_;
};
#include /**/ "ace/post.h"
#endif /* TAO_REPLY_DISPATCHER_H */
|