/* * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * */ package org.apache.qpid.pool; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.ThreadFactory; import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.TimeUnit; import java.util.concurrent.LinkedBlockingQueue; /** * ReferenceCountingExecutorService wraps an ExecutorService in order to provide shared reference to it. It counts * the references taken, instantiating the service on the first reference, and shutting it down when the last * reference is released. * *

It is important to ensure that an executor service is correctly shut down as failing to do so prevents the JVM * from terminating due to the existence of non-daemon threads. * *

(), _threadFactory); } return _pool; } } /** * Releases a reference to a shared executor service, decrementing the reference count. If the reference count falls * to zero, the executor service is shut down. */ public void releaseExecutorService() { synchronized (_lock) { if (--_refCount == 0) { _pool.shutdownNow(); } } } /** * Provides access to the executor service, without touching the reference count. * * @return The shared executor service, or null if none has been instantiated yet. */ public ExecutorService getPool() { return _pool; } /** * Return the ReferenceCount to this ExecutorService * @return reference count */ public int getReferenceCount() { return _refCount; } /** * * Return the thread factory used by the {@link ThreadPoolExecutor} to create new threads. * * @return thread factory */ public ThreadFactory getThreadFactory() { return _threadFactory; } /** * Sets the thread factory used by the {@link ThreadPoolExecutor} to create new threads. *

* If the pool has been already created, the change will have no effect until * {@link #getReferenceCount()} reaches zero and the pool recreated. For this reason, * callers must invoke this method before calling {@link #acquireExecutorService()}. * * @param threadFactory thread factory */ public void setThreadFactory(final ThreadFactory threadFactory) { if (threadFactory == null) { throw new NullPointerException("threadFactory cannot be null"); } _threadFactory = threadFactory; } }