User: starksm 
  Date: 01/12/29 11:50:07

  Modified:    src/resources/org/jboss/metadata Tag: Branch_2_4
                        jboss_2_4.dtd
  Log:
  Add the strictMaximumSize and strictTimeout container-pool-conf child elements
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.10  +23 -3     jboss/src/resources/org/jboss/metadata/jboss_2_4.dtd
  
  Index: jboss_2_4.dtd
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/resources/org/jboss/metadata/jboss_2_4.dtd,v
  retrieving revision 1.1.2.9
  retrieving revision 1.1.2.10
  diff -u -r1.1.2.9 -r1.1.2.10
  --- jboss_2_4.dtd     2001/11/28 06:25:28     1.1.2.9
  +++ jboss_2_4.dtd     2001/12/29 19:50:07     1.1.2.10
  @@ -7,8 +7,8 @@
         "-//JBoss//DTD JBOSS 2.4//EN"
         "http://www.jboss.org/j2ee/dtd/jboss_2_4.dtd";>
   
  -$Id: jboss_2_4.dtd,v 1.1.2.9 2001/11/28 06:25:28 starksm Exp $
  -$Revision: 1.1.2.9 $
  +$Id: jboss_2_4.dtd,v 1.1.2.10 2001/12/29 19:50:07 starksm Exp $
  +$Revision: 1.1.2.10 $
   
   Overview of the architecture of jboss.xml
   
  @@ -699,7 +699,7 @@
   
         Used in: container-configuration
         -->
  -<!ELEMENT container-pool-conf ((MaximumSize , MinimumSize) | Synchronized)>
  +<!ELEMENT container-pool-conf ((MaximumSize , MinimumSize, strictMaximumSize?, 
strictTimeout?) | Synchronized)>
   
   <!-- 
           This element is only valid if the instance pool is a subclass of
  @@ -722,6 +722,26 @@
           Used in: container-pool-conf for AbstractInstancePool subclasses
           -->
   <!ELEMENT MinimumSize (#PCDATA)>
  +
  +<!-- This element is used by AbstractInstancePool subclasses to enforce
  +strict adherence to the InstancePool MaximumSize bound. It is a boolean flag
  +flag that when true, will only allow MaximumSize ejb instances to be active
  +rather than allowing non-pool instances to be created as needed. When
  +there are MaximumSize active instances, any subsequent requests will be
  +blocked until an instance is freed back to the pool. The default
  +value for this element is false.
  +-->
  +<!ELEMENT strictMaximumSize (#PCDATA)>
  +
  +<!-- This element is used by AbstractInstancePool subclasses to set the time
  +in milliseconds to wait for an instance to be returned to the pool when there
  +are MaximumSize active instances. A value less than or equal to 0 will mean
  +not to wait at all. When a request times out waiting for an instance a
  +java.rmi.ServerException is generated and the call aborted. This is parsed
  +as an Integer so that max wait time is 2147483647 or just under 25 days, and
  +this is the default value.
  +-->
  +<!ELEMENT strictTimeout (#PCDATA)>
   
   <!--
            This element is only valid if the instance pool is 
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to