[infinispan-commits] Infinispan SVN: r1618 - trunk/client/hotrod-client/src/main/java/hotrod.

infinispan-commits at lists.jboss.org infinispan-commits at lists.jboss.org
Wed Mar 24 07:05:42 EDT 2010


Author: mircea.markus
Date: 2010-03-24 07:05:42 -0400 (Wed, 24 Mar 2010)
New Revision: 1618

Modified:
   trunk/client/hotrod-client/src/main/java/hotrod/RemoteCache.java
Log:
updated doc

Modified: trunk/client/hotrod-client/src/main/java/hotrod/RemoteCache.java
===================================================================
--- trunk/client/hotrod-client/src/main/java/hotrod/RemoteCache.java	2010-03-24 11:03:01 UTC (rev 1617)
+++ trunk/client/hotrod-client/src/main/java/hotrod/RemoteCache.java	2010-03-24 11:05:42 UTC (rev 1618)
@@ -21,14 +21,14 @@
  * <b>Concurrency</b>: implementors of this interface will support multi-threaded access, similar to the way {@link
  * org.infinispan.Cache} supports it.
  * <p/>
- * <b>Return values</b>: previous existing values for certain {@link java.util.Map} operations are not being returned,
- * but null will always be returned instead. E.g. {@link java.util.Map#put(Object, Object)} returns the previous value
- * associated to the supplied key. In case of RemoteCache, this will always return null.
+ * <b>Return values</b>: previousLY existing values for certain {@link java.util.Map} operations are not returned,
+ * null is returned instead. E.g. {@link java.util.Map#put(Object, Object)} returns the previous value
+ * associated to the supplied key. In case of RemoteCache, this returns null.
  * <p/>
- * <b>Synthetic operations</b>: Certain aggregate operations are being implemented based on other Hot Rod operations.
+ * <b>Synthetic operations</b>: aggregate operations are being implemented based on other Hot Rod operations.
  * E.g. all the {@link java.util.Map#putAll(java.util.Map)} is implemented through multiple individual puts. This means
  * that the these operations are not atomic and that they are costly, e.g. as the number of network round-trips is not
- * one, but the size of the added map. All these synthetic operations are documented as such and should be used
+ * one, but the size of the added map. All these synthetic operations are documented as such.
  *
  * @author Mircea.Markus at jboss.com
  * @since 4.1



More information about the infinispan-commits mailing list