blob: 35bdf9cb5df6349d65b28a4304087dcf01301864 (
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
|
// This may look like C, but it's really -*- C++ -*-
//=============================================================================
/**
* @file Asynch_Reply_Dispatcher.h
*
* $Id$
*
* @author Alexander Babu Arulanthu <alex@cs.wustl.edu>
* @author Jeff Parsons <parsons@cs.wustl.edu>
*/
//=============================================================================
#ifndef TAO_ASYNCH_REPLY_DISPATCHER_H
#define TAO_ASYNCH_REPLY_DISPATCHER_H
#include /**/ "ace/pre.h"
#include "Messaging.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "Asynch_Timeout_Handler.h"
#include "tao/Asynch_Reply_Dispatcher_Base.h"
class ACE_Allocator;
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
/// Reply dispatcher for Asynchoronous Method Invocation (AMI)s.
class TAO_Asynch_Reply_Dispatcher
: public TAO_Asynch_Reply_Dispatcher_Base
{
public:
/// Constructor.
TAO_Asynch_Reply_Dispatcher (
const TAO_Reply_Handler_Skeleton &reply_handler_skel,
Messaging::ReplyHandler_ptr reply_handler_ptr,
TAO_ORB_Core *orb_core,
ACE_Allocator *allocator
);
/// Destructor.
virtual ~TAO_Asynch_Reply_Dispatcher (void);
/// @name The Reply Dispatcher methods
//@{
virtual int dispatch_reply (TAO_Pluggable_Reply_Params ¶ms);
virtual void connection_closed (void);
//@}
/// Inform that the reply timed out
virtual void reply_timed_out (void);
/// Install the timeout handler
long schedule_timer (CORBA::ULong request_id,
const ACE_Time_Value &max_wait_time
ACE_ENV_ARG_DECL);
private:
/// Skeleton for the call back method in the Reply Handler.
const TAO_Reply_Handler_Skeleton reply_handler_skel_;
/// Reply Handler passed in the Asynchronous Invocation.
Messaging::ReplyHandler_var reply_handler_;
/// Timeout Handler in case of AMI timeouts
TAO_Asynch_Timeout_Handler *timeout_handler_;
};
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* TAO_ASYNCH_REPLY_DISPATCHER_H */
|