blob: 7efd9589503e91fe1aedcc1d83246219ed40b6bd (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
|
// -*- C++ -*-
//=============================================================================
/**
* @file Request_Dispatcher.h
*
* 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/Objref_VarOut_T.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/TAO_Export.h"
#include "tao/Pseudo_VarOut_T.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_ORB_Core;
class TAO_ServerRequest;
namespace CORBA
{
class Object;
typedef TAO_Pseudo_Var_T<Object> Object_var;
typedef TAO_Pseudo_Out_T<Object> Object_out;
}
/**
* @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);
};
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* TAO_REQUEST_DISPATCHER_H */
|