[jboss-cvs] jboss-seam/src/main/org/jboss/seam/interceptors ...

Gavin King gavin.king at jboss.com
Mon Oct 9 22:33:22 EDT 2006


  User: gavin   
  Date: 06/10/09 22:33:22

  Modified:    src/main/org/jboss/seam/interceptors 
                        AsynchronousInterceptor.java
  Log:
  async events
  
  Revision  Changes    Path
  1.2       +1 -1      jboss-seam/src/main/org/jboss/seam/interceptors/AsynchronousInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: AsynchronousInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/AsynchronousInterceptor.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- AsynchronousInterceptor.java	9 Oct 2006 08:30:28 -0000	1.1
  +++ AsynchronousInterceptor.java	10 Oct 2006 02:33:22 -0000	1.2
  @@ -23,7 +23,7 @@
               !Contexts.getEventContext().isSet(Dispatcher.EXECUTING_ASYNCHRONOUS_CALL);
         if ( scheduleAsync )
         {
  -         Timer timer = Dispatcher.instance().schedule(invocation, component);
  +         Timer timer = Dispatcher.instance().scheduleInvocation(invocation, component);
            //if the method returns a Timer, return it to the client
            return invocation.getMethod().getReturnType().equals(Timer.class) ? timer : null;
         }
  
  
  



More information about the jboss-cvs-commits mailing list