[jboss-cvs] JBossCache/src/org/jboss/cache/marshall ...
Vladmir Blagojevic
vladimir.blagojevic at jboss.com
Thu Dec 7 17:20:23 EST 2006
User: vblagojevic
Date: 06/12/07 17:20:22
Modified: src/org/jboss/cache/marshall MethodDeclarations.java
Log:
[JBCACHE-315] work in progress (JGroups block event passed to interceptors)
Revision Changes Path
1.25 +9 -1 JBossCache/src/org/jboss/cache/marshall/MethodDeclarations.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: MethodDeclarations.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/marshall/MethodDeclarations.java,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -b -r1.24 -r1.25
--- MethodDeclarations.java 20 Nov 2006 03:53:55 -0000 1.24
+++ MethodDeclarations.java 7 Dec 2006 22:20:22 -0000 1.25
@@ -31,7 +31,7 @@
* allowing lookup operations both ways.
*
* @author <a href="galder.zamarreno at jboss.com">Galder Zamarreno</a>
- * @version $Revision: 1.24 $
+ * @version $Revision: 1.25 $
*/
public class MethodDeclarations
{
@@ -112,6 +112,8 @@
public static final Method moveMethodLocal;
+ public static final Method blockChannelLocal;
+
// these are basic crud methods that are version-aware - JBCACHE-843.
public static final Method putDataVersionedMethodLocal;
@@ -210,6 +212,8 @@
public static final int removeDataVersionedMethodLocal_id = 42;
+ public static final int blockChannelMethodLocal_id = 43;
+
static
{
@@ -259,6 +263,9 @@
// ------------ move() api
moveMethodLocal = TreeCache.class.getDeclaredMethod("_move", Fqn.class, Fqn.class);
+ // ------------ Channel BLOCK event
+ blockChannelLocal = TreeCache.class.getDeclaredMethod("_block");
+
// ------------ version-aware methods - see JBCACHE-843
putDataVersionedMethodLocal = TreeCache.class.getDeclaredMethod("_put", GlobalTransaction.class, Fqn.class, Map.class, boolean.class, DataVersion.class);
putDataEraseVersionedMethodLocal = TreeCache.class.getDeclaredMethod("_put", GlobalTransaction.class, Fqn.class, Map.class, boolean.class, boolean.class, DataVersion.class);
@@ -310,6 +317,7 @@
methods.put(dataGravitationMethod_id, dataGravitationMethod);
methods.put(moveMethodLocal_id, moveMethodLocal);
+ methods.put(blockChannelMethodLocal_id, blockChannelLocal);
methods.put(putDataVersionedMethodLocal_id, putDataVersionedMethodLocal);
methods.put(putDataEraseVersionedMethodLocal_id, putDataEraseVersionedMethodLocal);
More information about the jboss-cvs-commits
mailing list