blob: 000198a083e6437da515e395d076e456a36a8105 (
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
68
69
70
71
72
73
74
75
76
|
// -*- C++ -*-
//=============================================================================
/**
* @file Connect_Strategy.h
*
* $Id$
*
* @author Balachandran Natarajan <bala@cs.wustl.edu>
*/
//=============================================================================
#ifndef TAO_CONNECT_STRATEGY_H
#define TAO_CONNECT_STRATEGY_H
#include "ace/pre.h"
#include "TAO_Export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class TAO_ORB_Core;
class TAO_Connector;
class TAO_Connection_Handler;
class ACE_Synch_Options;
class ACE_Time_Value;
/**
* @class TAO_Connect_Strategy
*
* @brief Define the interface for the connect strategy, i.e. the
* algorithm that controls how does the ORB establishes remote
* connections.
*
* The thread that establishes remote connections can either make a
* blocking or a non-blocking connect. The strategy to wait for the
* connection completion can also be different.
*
* This strategy controls how does the ORB schedules and waits for
* connection completion.
*/
class TAO_Export TAO_Connect_Strategy
{
public:
/// Constructor
TAO_Connect_Strategy (TAO_ORB_Core *orb);
/// Destructor
virtual ~TAO_Connect_Strategy (void);
/* Return the synch option for the connector, based on the timeout
* and the strategy in place. ACE_Connectors behavior can be altered
* by passing the right ACE_Synch_Options to the connect () call.
*/
virtual void synch_options (ACE_Time_Value *val,
ACE_Synch_Options &opt) = 0;
/* Wait for the connection to be completed and return a transport
* whose reference count has been incremented. If the connection
* establishment fails this method returns a null transport
* indicating the failure of connection.
*/
virtual int wait (TAO_Connection_Handler *ch,
ACE_Time_Value *val) = 0;
protected:
/// Cached copy of the ORB core pointer
TAO_ORB_Core *orb_core_;
};
#endif /*TAO_CONNECT_STRATEGY_H*/
|