blob: cf44e014a3c7d7b0ff5e9381186e292650ad3c8b (
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
|
// -*- C++ -*-
//=============================================================================
/**
* @file Request_Dispatcher.h
*
* $Id$
*
* A class that strategizes the request dispatching procedure.
*
* @author Frank Hunleth <fhunleth@cs.wustl.edu>
*/
//=============================================================================
#ifndef TAO_REQUEST_DISPATCHER_H
#define TAO_REQUEST_DISPATCHER_H
#include "ace/pre.h"
#include "tao/Object_KeyC.h"
#include "tao/IOPC.h"
class TAO_ServerRequest;
/**
* @class TAO_Request_Dispatcher
*
* @brief A class that strategizes the request dispatching procedure.
*
*/
class TAO_Export TAO_Request_Dispatcher
{
public:
/// Destructor.
virtual ~TAO_Request_Dispatcher (void);
/**
* Dispatch a request.
*/
virtual void dispatch (TAO_ORB_Core *orb_core,
TAO_ServerRequest &request,
CORBA::Object_out forward_to
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
};
#include "ace/post.h"
#endif /* TAO_REQUEST_DISPATCHER_H */
|