[
https://issues.apache.org/jira/browse/CURATOR-350?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15510298#comment-15510298
]
ASF GitHub Bot commented on CURATOR-350:
----------------------------------------
Github user oliegeon closed the pull request at:
https://github.com/apache/curator/pull/163
> Allow to close executor service on shutdown
> -------------------------------------------
>
> Key: CURATOR-350
> URL: https://issues.apache.org/jira/browse/CURATOR-350
> Project: Apache Curator
> Issue Type: Improvement
> Reporter: Olivier Liegeon
> Assignee: Jordan Zimmerman
>
> In Issue 251, we got the ability to create a ChildrenCache and passing an
> ExecutorService.
> This change does allow to close this service when closing the childrenCache.
> This should be a parameter, false by default to keep current behavior
> in {{CloseableExecutorService}}
> {code}
> /**
> * @param executorService the service to decorate
> */
> public CloseableExecutorService(ExecutorService executorService)
> {
> this(executorService, false);
> }
> {code}
> {code}
> if (shutdownOnClose) {
> executorService.shutdownNow();
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)