Navigation Menu

Skip to content

Commit

Permalink
Threadpool settings are configurable now
Browse files Browse the repository at this point in the history
  • Loading branch information
bpross-52n committed Nov 10, 2014
1 parent 06179cc commit d392a0a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/main/xsd/schema_v2.xsd
Expand Up @@ -58,6 +58,26 @@
<xs:simpleType>
<xs:restriction base="xs:double"/>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="minPoolSize" use="required">
<xs:simpleType>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="maxPoolSize" use="required">
<xs:simpleType>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="keepAliveSeconds" use="required">
<xs:simpleType>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="maxQueuedTasks" use="required">
<xs:simpleType>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
Expand Down

0 comments on commit d392a0a

Please sign in to comment.