[jboss-cvs] JBossCache/src/org/jboss/cache/marshall ...

Vladmir Blagojevic vladimir.blagojevic at jboss.com
Tue Dec 19 23:02:09 EST 2006


  User: vblagojevic
  Date: 06/12/19 23:02:09

  Modified:    src/org/jboss/cache/marshall  MethodDeclarations.java
  Log:
  [JBCACHE-315] added channel unblock callback
  
  Revision  Changes    Path
  1.26      +7 -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.25
  retrieving revision 1.26
  diff -u -b -r1.25 -r1.26
  --- MethodDeclarations.java	7 Dec 2006 22:20:22 -0000	1.25
  +++ MethodDeclarations.java	20 Dec 2006 04:02:09 -0000	1.26
  @@ -31,7 +31,7 @@
    * allowing lookup operations both ways.
    *
    * @author <a href="galder.zamarreno at jboss.com">Galder Zamarreno</a>
  - * @version $Revision: 1.25 $
  + * @version $Revision: 1.26 $
    */
   public class MethodDeclarations
   {
  @@ -114,6 +114,8 @@
      
      public static final Method blockChannelLocal;
   
  +   public static final Method unblockChannelLocal;
  +
      // these are basic crud methods that are version-aware - JBCACHE-843.
   
      public static final Method putDataVersionedMethodLocal;
  @@ -214,6 +216,8 @@
      
      public static final int blockChannelMethodLocal_id = 43;
   
  +   public static final int unblockChannelMethodLocal_id = 44;
  +
   
      static
      {
  @@ -265,6 +269,7 @@
            
            // ------------ Channel BLOCK event 
            blockChannelLocal =  TreeCache.class.getDeclaredMethod("_block"); 
  +         unblockChannelLocal =  TreeCache.class.getDeclaredMethod("_unblock"); 
   
            // ------------ version-aware methods - see JBCACHE-843
            putDataVersionedMethodLocal = TreeCache.class.getDeclaredMethod("_put", GlobalTransaction.class, Fqn.class, Map.class, boolean.class, DataVersion.class);
  @@ -318,6 +323,7 @@
   
         methods.put(moveMethodLocal_id, moveMethodLocal);
         methods.put(blockChannelMethodLocal_id, blockChannelLocal);
  +      methods.put(unblockChannelMethodLocal_id, unblockChannelLocal);
   
         methods.put(putDataVersionedMethodLocal_id, putDataVersionedMethodLocal);
         methods.put(putDataEraseVersionedMethodLocal_id, putDataEraseVersionedMethodLocal);
  
  
  



More information about the jboss-cvs-commits mailing list