blob: 0d8df08b5176647e03f8fdf0d11ceb6e708e0d02 (
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
|
// -*- C++ -*-
//=============================================================================
/**
* @file LocateRequest_Invocation.h
*
* $Id$
*
*
* @author Balachandran Natarajan <bala@dre.vanderbilt.edu>
*/
//=============================================================================
#ifndef TAO_LOCATEREQUEST_INVOCATION_H
#define TAO_LOCATEREQUEST_INVOCATION_H
#include /**/ "ace/pre.h"
#include "ace/Global_Macros.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/Synch_Invocation.h"
class TAO_Synch_Reply_Dispatcher;
namespace CORBA
{
class SystemException;
}
namespace TAO
{
class Profile_Transport_Resolver;
/**
* @class LocateRequest_Invocation
*
* @brief Object created bu TAO::LocateRequest_Invocation_Adapter to
* create and send LocateRequest invocation.
*
*/
class TAO_Export LocateRequest_Invocation
: protected Synch_Twoway_Invocation
{
public:
/**
* @param target, The target on which this invocation was
* started.
*
* @param resolver, Comntainer of the profile and transport on
* which this invocation is on
*
* @param detail, Operation details of the invocation on @a
* target. This is of no practical importance since it is not used
* in this class. This is just to keep our base class happy.
*
*/
LocateRequest_Invocation (
CORBA::Object_ptr otarget,
Profile_Transport_Resolver &resolver,
TAO_Operation_Details &detail);
/// Start the invocation.
Invocation_Status invoke (ACE_Time_Value *max_wait_time
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::Exception));
private:
/// Helper to check the reply status
Invocation_Status check_reply (TAO_Synch_Reply_Dispatcher &rd
ACE_ENV_ARG_DECL);
};
}
#include /**/ "ace/post.h"
#endif /*TAO_LOCATEREQUEST_INVOCATION_H*/
|