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

Ron Sigal ron_sigal at yahoo.com
Wed Dec 6 22:16:39 EST 2006


  User: rsigal  
  Date: 06/12/06 22:16:39

  Modified:    src/main/org/jboss/remoting/transport  ClientInvoker.java
  Log:
  JBREM-622:  Changed addClientLocator() and getClientLocators() to take sessionId parameter.
  
  Revision  Changes    Path
  1.9       +5 -3      JBossRemoting/src/main/org/jboss/remoting/transport/ClientInvoker.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ClientInvoker.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/transport/ClientInvoker.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- ClientInvoker.java	9 Nov 2006 21:35:24 -0000	1.8
  +++ ClientInvoker.java	7 Dec 2006 03:16:39 -0000	1.9
  @@ -48,11 +48,12 @@
       * of callbacks to receive (pull or push).  Set to null to poll for callback messages.
       * This can also be used to receive callbacks using another transport and subsystem,
       * if desired.
  -    *
  +    * @param sessionId
       * @param locator
  +    *
       * @return id for callback handler and locator combination
       */
  -   public String addClientLocator(InvokerCallbackHandler callbackhandler, InvokerLocator locator);
  +   public String addClientLocator(String sessionId, InvokerCallbackHandler callbackhandler, InvokerLocator locator);
   
      /**
       * Gets the client locator.  This locator will be used by the server side
  @@ -64,10 +65,11 @@
   
      /**
       * Gets list of AbstractInvoker.CallbackLocatorHolder containing listener id and locator
  +    * @param sessionId TODO
       * @param handler
       * @return
       */
  -   public List getClientLocators(InvokerCallbackHandler handler);
  +   public List getClientLocators(String sessionId, InvokerCallbackHandler handler);
   
      /**
       * Gets SocketFactory used to connect to ServerInvoker.
  
  
  



More information about the jboss-cvs-commits mailing list