blob: eb57d27d1c5f33ea4752ed877f9dbd5f85467d09 (
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
|
// $Id$
#include "tao/Wait_Strategy.h"
//@@ WAIT_STRATEGY_SPL_COPY_HOOK_START
ACE_RCSID (tao,
Wait_Strategy,
"$Id$")
#if !defined (__ACE_INLINE__)
# include "tao/Wait_Strategy.inl"
#endif /* __ACE_INLINE__ */
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
// Constructor.
TAO_Wait_Strategy::TAO_Wait_Strategy (TAO_Transport *transport)
: transport_ (transport),
is_registered_ (false)
{
}
// Destructor.
TAO_Wait_Strategy::~TAO_Wait_Strategy (void)
{
}
/*
* Hook to comment out this method in the lf wait strategy
*/
//@@ LF_WAIT_STRATEGY_SPL_COMMENT_HOOK_START
int
TAO_Wait_Strategy::sending_request (TAO_ORB_Core */* orb_core */,
int/* two_way */)
{
return 0;
}
//@@ LF_WAIT_STRATEGY_SPL_COMMENT_HOOK_END
/*
* Hook to specialize the Wait Strategy
*/
//@@ TAO_WAIT_STRATEGY_SPL_ADD_HOOK
TAO_END_VERSIONED_NAMESPACE_DECL
|