blob: c4a3477f7ee2a38b4fd66183199e541e7328be2b (
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
|
// -*- C++ -*-
//
// $Id$
// ===========================================================================
//
// = LIBRARY
// TAO
//
// = AUTHOR
// Carlos O'Ryan <coryan@uci.edu>,
// Chad Elliott <elliott_c@ociweb.com>
//
// ===========================================================================
#include "tao/Reply_Dispatcher.h"
#include "tao/Transport_Mux_Strategy.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE void
TAO_Bind_Dispatcher_Guard::status (int s)
{
this->status_ = s;
}
ACE_INLINE int
TAO_Bind_Dispatcher_Guard::status (void) const
{
return this->status_;
}
ACE_INLINE int
TAO_Bind_Dispatcher_Guard::unbind_dispatcher (void)
{
int const retval =
this->tms_->unbind_dispatcher (this->request_id_);
// Already unbound and so do not try again during destruction.
this->status_ =
TAO_Bind_Dispatcher_Guard::NO_UNBIND;
return retval;
}
TAO_END_VERSIONED_NAMESPACE_DECL
|