summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/AsynchProxyTools/ProxyReplyHandler.h
blob: 782a9be2fdbe8a374072425dae8fbfe27c6657ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// $Id$
//
#include "tao/DynamicInterface/DII_Reply_Handler.h"
#include "tao/DynamicInterface/Server_Request.h"
#include "tao/DynamicInterface/AMH_DSI_Response_Handler.h"
#include "tao/DynamicInterface/Dynamic_Implementation.h"
#include "tao/DynamicInterface/Request.h"
class ProxyReplyHandler : public virtual TAO_DII_Reply_Handler
                        , public virtual Messaging::ReplyHandler
{
  public:
    ProxyReplyHandler ();
    virtual ~ProxyReplyHandler ();

  // Callback method for deferred synchronous requests.
  virtual void handle_response (TAO_InputCDR &incoming);
  virtual void handle_excep (TAO_InputCDR &incoming,
                             CORBA::ULong reply_status);

  virtual handle_response_i () = 0;
  virtual handle_excep_i () = 0;
};