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

Gavin King gavin.king at jboss.com
Fri Jun 22 05:18:40 EDT 2007


  User: gavin   
  Date: 07/06/22 05:18:40

  Modified:    src/main/org/jboss/seam/async      Asynchronous.java
                        AsynchronousEvent.java AsynchronousInvocation.java
                        LocalTimerServiceDispatcher.java package-info.java
  Log:
  javadoc
  
  Revision  Changes    Path
  1.2       +8 -0      jboss-seam/src/main/org/jboss/seam/async/Asynchronous.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Asynchronous.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/async/Asynchronous.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- Asynchronous.java	20 Jun 2007 15:53:32 -0000	1.1
  +++ Asynchronous.java	22 Jun 2007 09:18:40 -0000	1.2
  @@ -7,6 +7,14 @@
   import org.jboss.seam.contexts.Lifecycle;
   import org.jboss.seam.core.Init;
   
  +/**
  + * Something that happens asynchronously, and with a full
  + * set of Seam contexts, including propagation of the 
  + * business process and task instances.
  + * 
  + * @author Gavin King
  + *
  + */
   public abstract class Asynchronous implements Serializable
   {
      static final long serialVersionUID = -551286304424595765L;
  
  
  
  1.2       +6 -0      jboss-seam/src/main/org/jboss/seam/async/AsynchronousEvent.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: AsynchronousEvent.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/async/AsynchronousEvent.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- AsynchronousEvent.java	20 Jun 2007 15:53:32 -0000	1.1
  +++ AsynchronousEvent.java	22 Jun 2007 09:18:40 -0000	1.2
  @@ -2,6 +2,12 @@
   
   import org.jboss.seam.core.Events;
   
  +/**
  + * An asynchronous event
  + * 
  + * @author Gavin King
  + *
  + */
   public class AsynchronousEvent extends Asynchronous
   {
      static final long serialVersionUID = 2074586442931427819L;
  
  
  
  1.2       +6 -0      jboss-seam/src/main/org/jboss/seam/async/AsynchronousInvocation.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: AsynchronousInvocation.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/async/AsynchronousInvocation.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- AsynchronousInvocation.java	20 Jun 2007 15:53:32 -0000	1.1
  +++ AsynchronousInvocation.java	22 Jun 2007 09:18:40 -0000	1.2
  @@ -6,6 +6,12 @@
   import org.jboss.seam.intercept.InvocationContext;
   import org.jboss.seam.util.Reflections;
   
  +/**
  + * An asynchronous method invocation.
  + * 
  + * @author Gavin King
  + *
  + */
   public class AsynchronousInvocation extends Asynchronous
   {
      static final long serialVersionUID = 7426196491669891310L;
  
  
  
  1.2       +0 -1      jboss-seam/src/main/org/jboss/seam/async/LocalTimerServiceDispatcher.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: LocalTimerServiceDispatcher.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/async/LocalTimerServiceDispatcher.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- LocalTimerServiceDispatcher.java	19 Jun 2007 19:08:46 -0000	1.1
  +++ LocalTimerServiceDispatcher.java	22 Jun 2007 09:18:40 -0000	1.2
  @@ -5,7 +5,6 @@
   import javax.ejb.Local;
   import javax.ejb.Timer;
   
  -
   /**
    * Local interface for TimerServiceDispatcher.
    * 
  
  
  
  1.2       +8 -0      jboss-seam/src/main/org/jboss/seam/async/package-info.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: package-info.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/async/package-info.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- package-info.java	19 Jun 2007 19:08:46 -0000	1.1
  +++ package-info.java	22 Jun 2007 09:18:40 -0000	1.2
  @@ -1,3 +1,11 @@
  +/**
  + * Seam asynchronicity: dispatcher implementations and schedule classes.
  + * Support for the EJB timer service, java.util.concurrent, and Quartz.
  + * Applications usually don't need to call these APIs directly.
  + * 
  + * @see org.jboss.seam.annotations.timer
  + * @see org.jboss.seam.annotations.Asynchronous
  + */
   @Namespace(value="http://jboss.com/products/seam/async", prefix="org.jboss.seam.async")
   package org.jboss.seam.async;
   
  
  
  



More information about the jboss-cvs-commits mailing list