[infinispan-commits] Infinispan SVN: r1740 - in trunk: server/core/src/main/scala/org/infinispan/server/core/transport/netty and 3 other directories.

infinispan-commits at lists.jboss.org infinispan-commits at lists.jboss.org
Wed May 5 11:25:45 EDT 2010


Author: galder.zamarreno at jboss.com
Date: 2010-05-05 11:25:43 -0400 (Wed, 05 May 2010)
New Revision: 1740

Modified:
   trunk/core/src/test/java/org/infinispan/loaders/file/ClusterFileCacheStoreFunctionalTest.java
   trunk/server/core/src/main/scala/org/infinispan/server/core/transport/netty/IdleStateHandlerProvider.scala
   trunk/server/hotrod/src/main/scala/org/infinispan/server/hotrod/HotRodServer.scala
   trunk/server/hotrod/src/main/scala/org/infinispan/server/hotrod/TopologyAddress.scala
   trunk/server/hotrod/src/main/scala/org/infinispan/server/hotrod/TopologyView.scala
   trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodConcurrentTest.scala
   trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodDistributionTest.scala
   trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodIdleTimeoutTest.scala
   trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodMultiNodeTest.scala
   trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodShutdownTest.scala
   trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodSingleNodeTest.scala
   trunk/server/memcached/src/test/scala/org/infinispan/server/memcached/MemcachedShutdownTest.scala
   trunk/server/memcached/src/test/scala/org/infinispan/server/memcached/MemcachedSingleNodeTest.scala
Log:
Update @since tag an added a TODO.

Modified: trunk/core/src/test/java/org/infinispan/loaders/file/ClusterFileCacheStoreFunctionalTest.java
===================================================================
--- trunk/core/src/test/java/org/infinispan/loaders/file/ClusterFileCacheStoreFunctionalTest.java	2010-05-05 14:26:06 UTC (rev 1739)
+++ trunk/core/src/test/java/org/infinispan/loaders/file/ClusterFileCacheStoreFunctionalTest.java	2010-05-05 15:25:43 UTC (rev 1740)
@@ -25,7 +25,7 @@
  * // TODO: Document this
  *
  * @author Galder Zamarreño
- * @since // TODO
+ * @since 4.1
  */
 @Test(groups = "unit", testName = "loaders.file.ClusterFileCacheStoreFunctionalTest")
 public class ClusterFileCacheStoreFunctionalTest extends MultipleCacheManagersTest {

Modified: trunk/server/core/src/main/scala/org/infinispan/server/core/transport/netty/IdleStateHandlerProvider.scala
===================================================================
--- trunk/server/core/src/main/scala/org/infinispan/server/core/transport/netty/IdleStateHandlerProvider.scala	2010-05-05 14:26:06 UTC (rev 1739)
+++ trunk/server/core/src/main/scala/org/infinispan/server/core/transport/netty/IdleStateHandlerProvider.scala	2010-05-05 15:25:43 UTC (rev 1740)
@@ -5,7 +5,7 @@
 /**
  * // TODO: Document this
  * @author Galder Zamarreño
- * @since // TODO
+ * @since 4.1
  */
 class IdleStateHandlerProvider extends IdleStateAwareChannelHandler {
 

Modified: trunk/server/hotrod/src/main/scala/org/infinispan/server/hotrod/HotRodServer.scala
===================================================================
--- trunk/server/hotrod/src/main/scala/org/infinispan/server/hotrod/HotRodServer.scala	2010-05-05 14:26:06 UTC (rev 1739)
+++ trunk/server/hotrod/src/main/scala/org/infinispan/server/hotrod/HotRodServer.scala	2010-05-05 15:25:43 UTC (rev 1740)
@@ -100,6 +100,7 @@
       cacheManager.defineConfiguration(TopologyCacheName, topologyCacheConfig)
    }
 
+   // TODO: Change to sync false rather than creating your own callable and firing it 
    @Listener
    private class CrashedMemberDetectorListener {
 

Modified: trunk/server/hotrod/src/main/scala/org/infinispan/server/hotrod/TopologyAddress.scala
===================================================================
--- trunk/server/hotrod/src/main/scala/org/infinispan/server/hotrod/TopologyAddress.scala	2010-05-05 14:26:06 UTC (rev 1739)
+++ trunk/server/hotrod/src/main/scala/org/infinispan/server/hotrod/TopologyAddress.scala	2010-05-05 15:25:43 UTC (rev 1740)
@@ -11,7 +11,7 @@
  * could potentially be configured with a different hash algorithm, a topology address also contains per cache hash id.
  * 
  * @author Galder Zamarreño
- * @since // TODO
+ * @since 4.1
  */
 @Marshallable(externalizer = classOf[TopologyAddress.Externalizer], id = 58)
 case class TopologyAddress(val host: String, val port: Int, val hashIds: Map[String, Int], val clusterAddress: Address)

Modified: trunk/server/hotrod/src/main/scala/org/infinispan/server/hotrod/TopologyView.scala
===================================================================
--- trunk/server/hotrod/src/main/scala/org/infinispan/server/hotrod/TopologyView.scala	2010-05-05 14:26:06 UTC (rev 1739)
+++ trunk/server/hotrod/src/main/scala/org/infinispan/server/hotrod/TopologyView.scala	2010-05-05 15:25:43 UTC (rev 1740)
@@ -6,7 +6,7 @@
 /**
  * // TODO: Document this
  * @author Galder Zamarreño
- * @since // TODO
+ * @since 4.1
  */
 @Marshallable(externalizer = classOf[TopologyView.Externalizer], id = 59)
 case class TopologyView(val topologyId: Int, val members: List[TopologyAddress])

Modified: trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodConcurrentTest.scala
===================================================================
--- trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodConcurrentTest.scala	2010-05-05 14:26:06 UTC (rev 1739)
+++ trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodConcurrentTest.scala	2010-05-05 15:25:43 UTC (rev 1740)
@@ -8,7 +8,7 @@
 /**
  * // TODO: Document this
  * @author Galder Zamarreño
- * @since // TODO
+ * @since 4.1
  */
 @Test(groups = Array("functional"), testName = "server.hotrod.HotRodConcurrentTest")
 class HotRodConcurrentTest extends HotRodSingleNodeTest {

Modified: trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodDistributionTest.scala
===================================================================
--- trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodDistributionTest.scala	2010-05-05 14:26:06 UTC (rev 1739)
+++ trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodDistributionTest.scala	2010-05-05 15:25:43 UTC (rev 1740)
@@ -16,7 +16,7 @@
 /**
  * // TODO: Document this
  * @author Galder Zamarreño
- * @since // TODO
+ * @since 4.1
  */
 @Test(groups = Array("functional"), testName = "server.hotrod.HotRodDistributionTest")
 class HotRodDistributionTest extends HotRodMultiNodeTest {

Modified: trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodIdleTimeoutTest.scala
===================================================================
--- trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodIdleTimeoutTest.scala	2010-05-05 14:26:06 UTC (rev 1739)
+++ trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodIdleTimeoutTest.scala	2010-05-05 15:25:43 UTC (rev 1740)
@@ -10,7 +10,7 @@
 /**
  * // TODO: Document this
  * @author Galder Zamarreño
- * @since // TODO
+ * @since 4.1
  */
 @Test(groups = Array("functional"), testName = "server.hotrod.HotRodIdleTimeoutTest")
 class HotRodIdleTimeoutTest extends HotRodSingleNodeTest {

Modified: trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodMultiNodeTest.scala
===================================================================
--- trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodMultiNodeTest.scala	2010-05-05 14:26:06 UTC (rev 1739)
+++ trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodMultiNodeTest.scala	2010-05-05 15:25:43 UTC (rev 1740)
@@ -11,7 +11,7 @@
 /**
  * // TODO: Document this
  * @author Galder Zamarreño
- * @since // TODO
+ * @since 4.1
  */
 abstract class HotRodMultiNodeTest extends MultipleCacheManagersTest {
    import HotRodServer._

Modified: trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodShutdownTest.scala
===================================================================
--- trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodShutdownTest.scala	2010-05-05 14:26:06 UTC (rev 1739)
+++ trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodShutdownTest.scala	2010-05-05 15:25:43 UTC (rev 1740)
@@ -7,7 +7,7 @@
 /**
  * // TODO: Document this
  * @author Galder Zamarreño
- * @since // TODO
+ * @since 4.1
  */
 @Test(groups = Array("functional"), testName = "server.hotrod.HotRodShutdownTest")
 class HotRodShutdownTest extends HotRodSingleNodeTest {

Modified: trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodSingleNodeTest.scala
===================================================================
--- trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodSingleNodeTest.scala	2010-05-05 14:26:06 UTC (rev 1739)
+++ trunk/server/hotrod/src/test/scala/org/infinispan/server/hotrod/HotRodSingleNodeTest.scala	2010-05-05 15:25:43 UTC (rev 1740)
@@ -13,7 +13,7 @@
 /**
  * // TODO: Document this
  * @author Galder Zamarreño
- * @since // TODO
+ * @since 4.1
  */
 abstract class HotRodSingleNodeTest extends SingleCacheManagerTest {
    val cacheName = "HotRodCache"

Modified: trunk/server/memcached/src/test/scala/org/infinispan/server/memcached/MemcachedShutdownTest.scala
===================================================================
--- trunk/server/memcached/src/test/scala/org/infinispan/server/memcached/MemcachedShutdownTest.scala	2010-05-05 14:26:06 UTC (rev 1739)
+++ trunk/server/memcached/src/test/scala/org/infinispan/server/memcached/MemcachedShutdownTest.scala	2010-05-05 15:25:43 UTC (rev 1740)
@@ -8,7 +8,7 @@
 /**
  * // TODO: Document this
  * @author Galder Zamarreño
- * @since // TODO
+ * @since 4.1
  */
 @Test(groups = Array("functional"), testName = "server.memcached.MemcachedShutdownTest")
 class MemcachedShutdownTest extends MemcachedSingleNodeTest {

Modified: trunk/server/memcached/src/test/scala/org/infinispan/server/memcached/MemcachedSingleNodeTest.scala
===================================================================
--- trunk/server/memcached/src/test/scala/org/infinispan/server/memcached/MemcachedSingleNodeTest.scala	2010-05-05 14:26:06 UTC (rev 1739)
+++ trunk/server/memcached/src/test/scala/org/infinispan/server/memcached/MemcachedSingleNodeTest.scala	2010-05-05 15:25:43 UTC (rev 1740)
@@ -10,7 +10,7 @@
 /**
  * // TODO: Document this
  * @author Galder Zamarreño
- * @since // TODO
+ * @since 4.1
  */
 abstract class MemcachedSingleNodeTest extends SingleCacheManagerTest with MemcachedTestingUtil {
    private var memcachedClient: MemcachedClient = _



More information about the infinispan-commits mailing list