summaryrefslogtreecommitdiff
path: root/TAO/tao/Asynch_Invocation.i
blob: b9ce8da122378611c5db0d1afc049e82fb8e15da (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
// This may look like C, but it's really -*- C++ -*-
//
// $Id$
//

ACE_INLINE
TAO_GIOP_Twoway_Asynch_Invocation::
TAO_GIOP_Twoway_Asynch_Invocation (TAO_Stub *stub,
                                   const char *operation,
                                   TAO_ORB_Core *orb_core,
                                   const TAO_Reply_Handler_Skeleton &reply_handler_skel,
                                   Messaging::ReplyHandler_ptr reply_handler_ptr)
  : TAO_GIOP_Invocation (stub, operation, orb_core),
    rd_ (0)
{
  // New Reply Dispatcher.
  ACE_NEW (rd_,
           TAO_Asynch_Reply_Dispatcher (reply_handler_skel,
                                        reply_handler_ptr));
}

ACE_INLINE const IOP::ServiceContextList &
TAO_GIOP_Twoway_Asynch_Invocation::reply_service_info (void) const
{
  return this->rd_->reply_service_info ();
}