[jboss-svn-commits] JBL Code SVN: r36465 - labs/jbosstm/trunk/XTS/docs/Transactions_XTS_Administration_And_Development_Guide/en-US.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Sun Dec 19 18:55:29 EST 2010
Author: misty at redhat.com
Date: 2010-12-19 18:55:28 -0500 (Sun, 19 Dec 2010)
New Revision: 36465
Modified:
labs/jbosstm/trunk/XTS/docs/Transactions_XTS_Administration_And_Development_Guide/en-US/Transactions_Overview.xml
Log:
Adding conceptual definition of a transaction
Modified: labs/jbosstm/trunk/XTS/docs/Transactions_XTS_Administration_And_Development_Guide/en-US/Transactions_Overview.xml
===================================================================
--- labs/jbosstm/trunk/XTS/docs/Transactions_XTS_Administration_And_Development_Guide/en-US/Transactions_Overview.xml 2010-12-19 23:53:28 UTC (rev 36464)
+++ labs/jbosstm/trunk/XTS/docs/Transactions_XTS_Administration_And_Development_Guide/en-US/Transactions_Overview.xml 2010-12-19 23:55:28 UTC (rev 36465)
@@ -37,13 +37,14 @@
a definitive reference to all transactional technology.
</para>
<para>
- A classic transaction is a unit of work that either completely succeeds, or fails with all partially completed work
- being undone. When a transaction is committed, all changes made by the associated requests are made durable,
- normally by committing the results of the work to a database. If a transaction should fail and is rolled back, all
- changes made by the associated work are undone. Transactions in distributed systems typically require the use of a
- transaction manager that is responsible for coordinating all of the participants that are part of the transaction.
+ A transaction is a unit of work that encapsulates multiple database actions such that that either all the
+ encapsulated actions fail or all succeed.
</para>
<para>
+ Transactions ensure data integrity when an application interacts with multiple datasources.
+ </para>
+
+ <para>
The main components involved in using and defining transactional Web Services using XTS are illustrated in <xref
linkend="fig-web-services-transaction" />.
</para>
More information about the jboss-svn-commits
mailing list