Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
Bug 1650479 - Updates description of Long/Short Running Thread Pool
Browse files Browse the repository at this point in the history
  • Loading branch information
josejulio authored and spinder committed Apr 26, 2019
1 parent d341417 commit 72d45ea
Showing 1 changed file with 6 additions and 6 deletions.
Expand Up @@ -3437,7 +3437,7 @@
<service name="Long Running Thread Pool (Managed Server)"
class="BaseComponent"
discovery="SubsystemDiscovery"
description="Long running thread pool executor with a bounded queue where threads submitting tasks may block.">
description="A long running thread pool executor with a bounded queue where threads submitting tasks may block. Such a thread pool has a core and maximum size and a specified queue length. When a task is submitted, if the number of running threads is less than the core size, a new thread is created. Otherwise, if there is room in the queue, the task is enqueued. Otherwise, if the number of running threads is less than the maximum size, a new thread is created. Otherwise, the caller blocks until room becomes available in the queue (only for EAP 7.2.1 and newer, tasks are discarded for earlier versions of EAP).">

<plugin-configuration>
<c:simple-property name="path" readOnly="true" default="long-running-threads"/>
Expand Down Expand Up @@ -3473,7 +3473,7 @@
<service name="Short Running Thread Pool (Managed Server)"
class="BaseComponent"
discovery="SubsystemDiscovery"
description="Short running thread pool executor with a bounded queue where threads submitting tasks may block.">
description="A short running thread pool executor with a bounded queue where threads submitting tasks may block. Such a thread pool has a core and maximum size and a specified queue length. When a task is submitted, if the number of running threads is less than the core size, a new thread is created. Otherwise, if there is room in the queue, the task is enqueued. Otherwise, if the number of running threads is less than the maximum size, a new thread is created. Otherwise, the caller blocks until room becomes available in the queue (only for EAP 7.2.1 and newer, tasks are discarded for earlier versions of EAP).">

<plugin-configuration>
<c:simple-property name="path" readOnly="true" default="short-running-threads"/>
Expand Down Expand Up @@ -7458,7 +7458,7 @@
<service name="Long Running Thread Pool (Profile)"
class="BaseComponent"
discovery="SubsystemDiscovery"
description="Long running thread pool executor with a bounded queue where threads submitting tasks may block."
description="A long running thread pool executor with a bounded queue where threads submitting tasks may block. Such a thread pool has a core and maximum size and a specified queue length. When a task is submitted, if the number of running threads is less than the core size, a new thread is created. Otherwise, if there is room in the queue, the task is enqueued. Otherwise, if the number of running threads is less than the maximum size, a new thread is created. Otherwise, the caller blocks until room becomes available in the queue (only for EAP 7.2.1 and newer, tasks are discarded for earlier versions of EAP)."
createDeletePolicy="both">

<plugin-configuration>
Expand Down Expand Up @@ -7490,7 +7490,7 @@
<service name="Short Running Thread Pool (Profile)"
class="BaseComponent"
discovery="SubsystemDiscovery"
description="Short running thread pool executor with a bounded queue where threads submitting tasks may block."
description="A short running thread pool executor with a bounded queue where threads submitting tasks may block. Such a thread pool has a core and maximum size and a specified queue length. When a task is submitted, if the number of running threads is less than the core size, a new thread is created. Otherwise, if there is room in the queue, the task is enqueued. Otherwise, if the number of running threads is less than the maximum size, a new thread is created. Otherwise, the caller blocks until room becomes available in the queue (only for EAP 7.2.1 and newer, tasks are discarded for earlier versions of EAP)."
createDeletePolicy="both">

<plugin-configuration>
Expand Down Expand Up @@ -12653,7 +12653,7 @@
<service name="Long Running Thread Pool"
class="BaseComponent"
discovery="SubsystemDiscovery"
description="Long running thread pool executor with a bounded queue where threads submitting tasks may block."
description="A long running thread pool executor with a bounded queue where threads submitting tasks may block. Such a thread pool has a core and maximum size and a specified queue length. When a task is submitted, if the number of running threads is less than the core size, a new thread is created. Otherwise, if there is room in the queue, the task is enqueued. Otherwise, if the number of running threads is less than the maximum size, a new thread is created. Otherwise, the caller blocks until room becomes available in the queue (only for EAP 7.2.1 and newer, tasks are discarded for earlier versions of EAP)."
createDeletePolicy="both">

<plugin-configuration>
Expand Down Expand Up @@ -12689,7 +12689,7 @@
<service name="Short Running Thread Pool"
class="BaseComponent"
discovery="SubsystemDiscovery"
description="Short running thread pool executor with a bounded queue where threads submitting tasks may block."
description="A short running thread pool executor with a bounded queue where threads submitting tasks may block. Such a thread pool has a core and maximum size and a specified queue length. When a task is submitted, if the number of running threads is less than the core size, a new thread is created. Otherwise, if there is room in the queue, the task is enqueued. Otherwise, if the number of running threads is less than the maximum size, a new thread is created. Otherwise, the caller blocks until room becomes available in the queue (only for EAP 7.2.1 and newer, tasks are discarded for earlier versions of EAP)."
createDeletePolicy="both">

<plugin-configuration>
Expand Down

0 comments on commit 72d45ea

Please sign in to comment.