blob: 0e90621f6276a70ed9c7aea17cba74ef1ee50894 (
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
64
65
66
67
|
/* -*- C++ -*- */
//=============================================================================
/**
* @file ProcessingModePolicy.h
*
* $Id$
*
* @author Tim Bradley (bradley_t@ociweb.com)
*/
//=============================================================================
#ifndef TAO_PROCESSING_MODE_POLICY_H
#define TAO_PROCESSING_MODE_POLICY_H
#include /**/ "ace/pre.h"
#include "tao/orbconf.h"
#if TAO_HAS_INTERCEPTORS == 1
#include "tao/PI/pi_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/LocalObject.h"
#include "tao/PI/PI_includeC.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class TAO_ProcessingModePolicy
*
* @brief Implementation class for Portable Interceptor ProcessingModePolicy.
*
* This policy is used to specify which kinds of requests (collocated vs.
* remote) should (or should not) cause a Portable Interceptor to be used.
*/
class TAO_PI_Export TAO_ProcessingModePolicy
: public PortableInterceptor::ProcessingModePolicy,
public ::CORBA::LocalObject
{
public:
/// Constructor.
TAO_ProcessingModePolicy (PortableInterceptor::ProcessingMode mode);
virtual PortableInterceptor::ProcessingMode processing_mode (void);
virtual CORBA::PolicyType policy_type (void);
virtual CORBA::Policy_ptr copy (void);
virtual void destroy (void);
private:
/// The attribute
PortableInterceptor::ProcessingMode processing_mode_;
};
TAO_END_VERSIONED_NAMESPACE_DECL
#endif /* TAO_HAS_INTERCEPTORS == 1 */
#include /**/ "ace/post.h"
#endif /* TAO_PROCESSING_MODE_POLICY_H */
|