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

Manik Surtani manik at jboss.org
Wed Jun 6 08:43:49 EDT 2007


  User: msurtani
  Date: 07/06/06 08:43:49

  Modified:    src/org/jboss/cache/marshall 
                        InactiveRegionAwareRpcDispatcher.java
  Log:
  Removed a lot of deprecation
  
  Revision  Changes    Path
  1.2       +3 -18     JBossCache/src/org/jboss/cache/marshall/InactiveRegionAwareRpcDispatcher.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: InactiveRegionAwareRpcDispatcher.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/marshall/InactiveRegionAwareRpcDispatcher.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- InactiveRegionAwareRpcDispatcher.java	16 Nov 2006 17:21:10 -0000	1.1
  +++ InactiveRegionAwareRpcDispatcher.java	6 Jun 2007 12:43:49 -0000	1.2
  @@ -5,11 +5,8 @@
   import org.jgroups.Message;
   import org.jgroups.MessageListener;
   import org.jgroups.blocks.MethodCall;
  -import org.jgroups.blocks.PullPushAdapter;
   import org.jgroups.blocks.RpcDispatcher;
   
  -import java.io.Serializable;
  -
   /**
    * Extends {@link org.jgroups.blocks.RpcDispatcher} and adds the possibility that the marshaller may throw {@link org.jboss.cache.marshall.InactiveRegionException}s.
    *
  @@ -18,26 +15,14 @@
    */
   public class InactiveRegionAwareRpcDispatcher extends RpcDispatcher
   {
  +   /**
  +    * Only provide the flavour of the {@link RpcDispatcher} constructor that we care about.
  +    */
      public InactiveRegionAwareRpcDispatcher(Channel channel, MessageListener l, MembershipListener l2, Object server_obj)
      {
         super(channel, l, l2, server_obj);
      }
   
  -   public InactiveRegionAwareRpcDispatcher(Channel channel, MessageListener l, MembershipListener l2, Object server_obj, boolean deadlock_detection)
  -   {
  -      super(channel, l, l2, server_obj, deadlock_detection);
  -   }
  -
  -   public InactiveRegionAwareRpcDispatcher(Channel channel, MessageListener l, MembershipListener l2, Object server_obj, boolean deadlock_detection, boolean concurrent_processing)
  -   {
  -      super(channel, l, l2, server_obj, deadlock_detection, concurrent_processing);
  -   }
  -
  -   public InactiveRegionAwareRpcDispatcher(PullPushAdapter adapter, Serializable id, MessageListener l, MembershipListener l2, Object server_obj)
  -   {
  -      super(adapter, id, l, l2, server_obj);
  -   }
  -
      /**
       * Message contains MethodCall. Execute it against *this* object and return result.
       * Use MethodCall.invoke() to do this. Return result.
  
  
  



More information about the jboss-cvs-commits mailing list