[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting/callback ...

Ron Sigal ron_sigal at yahoo.com
Wed Nov 15 23:04:42 EST 2006


  User: rsigal  
  Date: 06/11/15 23:04:42

  Modified:    src/main/org/jboss/remoting/callback  CallbackListener.java
  Log:
  JBREM-605:  Callback acknowledgements can now return a response.
  
  Revision  Changes    Path
  1.4       +3 -2      JBossRemoting/src/main/org/jboss/remoting/callback/CallbackListener.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CallbackListener.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/callback/CallbackListener.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- CallbackListener.java	28 Oct 2006 17:55:12 -0000	1.3
  +++ CallbackListener.java	16 Nov 2006 04:04:42 -0000	1.4
  @@ -38,8 +38,9 @@
   public interface CallbackListener
   {
      /**
  +    * @param callbackHandler InvokerCallbackHandler that handled this callback
       * @param callbackId id of callback being acknowledged
  -    * @param preOrPost indicates of acknowledgement is preprocess or postprocess
  +    * @param response either (1) response sent with acknowledgement or (2) null
       */
  -   void callbackSent(Object callbackId, int preOrPost);
  +   void acknowledgeCallback(InvokerCallbackHandler callbackHandler, Object callbackId, Object response);
   }
  
  
  



More information about the jboss-cvs-commits mailing list