[infinispan-commits] Infinispan SVN: r288 - trunk/core/src/main/java/org/infinispan/loaders.

infinispan-commits at lists.jboss.org infinispan-commits at lists.jboss.org
Thu May 14 06:15:16 EDT 2009


Author: manik.surtani at jboss.com
Date: 2009-05-14 06:15:16 -0400 (Thu, 14 May 2009)
New Revision: 288

Modified:
   trunk/core/src/main/java/org/infinispan/loaders/CacheStore.java
Log:
Javadocs

Modified: trunk/core/src/main/java/org/infinispan/loaders/CacheStore.java
===================================================================
--- trunk/core/src/main/java/org/infinispan/loaders/CacheStore.java	2009-05-14 10:04:16 UTC (rev 287)
+++ trunk/core/src/main/java/org/infinispan/loaders/CacheStore.java	2009-05-14 10:15:16 UTC (rev 288)
@@ -117,13 +117,13 @@
     * Commits a transaction that has been previously prepared.
     * <p/>
     * This method <i>may</b> be invoked on a transaction for which there is <i>no</i> prior {@link
-    * #prepare(java.util.List}.  The implementation would need to deal with
-    * this case acordingly.  Typically, this would be a no-op, after ensuring any resources attached to the transaction
-    * are cleared up.
+    * #prepare(java.util.List, org.infinispan.transaction.xa.GlobalTransaction, boolean)}.  The implementation would
+    * need to deal with this case acordingly.  Typically, this would be a no-op, after ensuring any resources attached
+    * to the transaction are cleared up.
     * <p/>
     * Also note that this method <i>may</i> be invoked on a thread which is different from the {@link
-    * #prepare(java.util.List} invocation.  As such, {@link ThreadLocal}s
-    * should not be relied upon to maintain transaction context.
+    * #prepare(java.util.List, org.infinispan.transaction.xa.GlobalTransaction, boolean)} invocation.  As such, {@link
+    * ThreadLocal}s should not be relied upon to maintain transaction context.
     * <p/>
     *
     * @param tx tx to commit
@@ -135,13 +135,13 @@
     * Rolls back a transaction that has been previously prepared
     * <p/>
     * This method <i>may</b> be invoked on a transaction for which there is <i>no</i> prior {@link
-    * #prepare(java.util.List}.  The implementation would need to deal with
-    * this case acordingly.  Typically, this would be a no-op, after ensuring any resources attached to the transaction
-    * are cleared up.
+    * #prepare(java.util.List, org.infinispan.transaction.xa.GlobalTransaction, boolean)}.  The implementation would
+    * need to deal with this case acordingly.  Typically, this would be a no-op, after ensuring any resources attached
+    * to the transaction are cleared up.
     * <p/>
     * Also note that this method <i>may</i> be invoked on a thread which is different from the {@link
-    * #prepare(java.util.List} invocation.  As such, {@link ThreadLocal}s
-    * should not be relied upon to maintain transaction context.
+    * #prepare(java.util.List, org.infinispan.transaction.xa.GlobalTransaction, boolean)} invocation.  As such, {@link
+    * ThreadLocal}s should not be relied upon to maintain transaction context.
     * <p/>
     *
     * @param tx tx to roll back




More information about the infinispan-commits mailing list