[jboss-cvs] jboss-seam/doc/reference/en/modules ...

Peter Muir peter at bleepbleep.org.uk
Fri Oct 12 07:38:22 EDT 2007


  User: pmuir   
  Date: 07/10/12 07:38:22

  Modified:    doc/reference/en/modules  concepts.xml
  Log:
  A note on allocation of SLSBs
  
  Revision  Changes    Path
  1.68      +6 -0      jboss-seam/doc/reference/en/modules/concepts.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: concepts.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/doc/reference/en/modules/concepts.xml,v
  retrieving revision 1.67
  retrieving revision 1.68
  diff -u -b -r1.67 -r1.68
  --- concepts.xml	11 Oct 2007 22:52:03 -0000	1.67
  +++ concepts.xml	12 Oct 2007 11:38:22 -0000	1.68
  @@ -318,6 +318,12 @@
                   Stateless session beans always live in the stateless context. 
               </para>
               <para> 
  +                Stateless session beans can be accessed concurrently as a new instance is used for each request. 
  +                Assigning the instance to the request is the responsibility of the EJB3 container (normally instances
  +                will be allocated from a reusable pool meaning that you may find any instance variables contain data
  +                from previous uses of the bean). 
  +            </para>
  +            <para> 
                   Stateless session beans are the least interesting kind of Seam component. 
               </para> 
               <para>
  
  
  



More information about the jboss-cvs-commits mailing list