summaryrefslogtreecommitdiff
path: root/TAO/docs
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-10-13 02:33:18 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-10-13 02:33:18 +0000
commit1e809cea685f4c9cc9530a105d2292ee9fe94c5a (patch)
tree23f94d6b949fa4aaf4207f560cd59f91c90187dd /TAO/docs
parent8d9288a330756197d630a315704cef1ffd6bd8aa (diff)
downloadATCD-1e809cea685f4c9cc9530a105d2292ee9fe94c5a.tar.gz
ChangeLogTag: Wed Oct 12 19:26:48 2005 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'TAO/docs')
-rw-r--r--TAO/docs/notification/reliability.html35
1 files changed, 18 insertions, 17 deletions
diff --git a/TAO/docs/notification/reliability.html b/TAO/docs/notification/reliability.html
index 44c9c198035..cc04b3c07c7 100644
--- a/TAO/docs/notification/reliability.html
+++ b/TAO/docs/notification/reliability.html
@@ -93,10 +93,10 @@
strategy is:
</P>
<p><code>dynamic Topology_Factory Service_Object*
- TAO_CosNotification_persist:_make_XML_Topology_Factory() "-base_path ./reconnect_test" </code>
+ TAO_CosNotification_Persist:_make_XML_Topology_Factory() "-base_path ./reconnect_test" </code>
</p>
<p>The first part of this line: <code>dynamic Topology_Factory Service_Object*
- TAO_CosNotification_persist:_make_XML_Topology_Factory()</code>should be given
+ TAO_CosNotification_Persist:_make_XML_Topology_Factory()</code>should be given
exactly as shown. For details on this syntax, see chapter 17 of the TAO
Developer's Guide.
</p>
@@ -187,7 +187,7 @@
An example of the line needed to configure the Event_Persistence object is:
</p>
<p><code>dynamic Event_Persistence Service_Object*
- TAO_CosNotification_persist:_make_Standard_Event_Persistence() "-v -file_path
+ TAO_CosNotification_Persist:_make_Standard_Event_Persistence() "-v -file_path
./event_persist.db" </code>
</p>
<p><CODE></CODE>If this line does not appear in svc.conf, then event reliability
@@ -280,21 +280,22 @@
running.</p>
<P>The interfaces involved are defined in the NotifyExt.idl file (in
$TAO_ROOT/orbsvcs/orbsvcs) and are shown here:</P>
- <pre>
- /** * \brief An interface which gets registered with a
- ReconnectionRegistry.
- * * A supplier or consumer must implement this interface in order
- to * allow the Notification Service to attempt to reconnect to it
- after * a failure. The supplier or consumer must register its instance
- of * this interface with the
- ReconnectionRegistry.
- */ interface
- ReconnectionCallback
- { /// Perform operations to reconnect to the Notification
- Service /// after a
- failure. void reconnect (in Object
+ <pre>
+ /**
+ * \brief An interface which gets registered with a ReconnectionRegistry.
+ *
+ * A supplier or consumer must implement this interface in order to
+ * allow the Notification Service to attempt to reconnect to it after
+ * a failure. The supplier or consumer must register its instance of
+ * this interface with the ReconnectionRegistry.
+ */
+ interface ReconnectionCallback
+ {
+ /// Perform operations to reconnect to the Notification Service
+ /// after a failure.
+ void reconnect (in Object new_connection);
- new_connection); /// Check to see if the ReconnectionCallback is alive
+ /// Check to see if the ReconnectionCallback is alive
boolean is_alive ();
};