blob: fe1f556b62fe36bc0cef1c64900e469d22c60d34 (
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
|
// -*- C++ -*-
//=============================================================================
/**
* @file Local_Servant_Base.h
*
* $Id$
*
* @author Irfan Pyarali <irfan@cs.wustl.edu>
*/
//=============================================================================
#ifndef TAO_LOCAL_SERVANT_BASE_H
#define TAO_LOCAL_SERVANT_BASE_H
#include /**/ "ace/pre.h"
#include "tao/PortableServer/portableserver_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/PortableServer/Servant_Base.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class TAO_Local_ServantBase
*
* @brief Base class for local servants.
*
* This servant does not register with the POA and does not
* produce a valid stub, i.e., object references of this servant
* cannot be exported. The (collocated) stubs of these servants
* will always be direct, i.e., call directly to the servant and
* don't call through the POA since this servant is not
* registered with the POA.
*/
class TAO_PortableServer_Export TAO_Local_ServantBase
: public virtual TAO_ServantBase
{
protected:
/// This is an auxiliary method for _this(). Make sure *not* to
/// register with the default POA.
TAO_Stub *_create_stub (void);
/// Throws CORBA::BAD_OPERATION exception.
void _dispatch (
TAO_ServerRequest &request,
TAO::Portable_Server::Servant_Upcall* servant_upcall);
};
TAO_END_VERSIONED_NAMESPACE_DECL
#if defined (__ACE_INLINE__)
# include "tao/PortableServer/Local_Servant_Base.inl"
#endif /* __ACE_INLINE__ */
#include /**/ "ace/post.h"
#endif /* TAO_LOCAL_SERVANT_BASE_H */
|