BUG-542 - adding overall statictics
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / ThreadPoolLoggingExecutor.java
1 /**
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  * 
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.openflowplugin.openflow.md.core;
9
10 import java.util.concurrent.BlockingQueue;
11 import java.util.concurrent.ThreadPoolExecutor;
12 import java.util.concurrent.TimeUnit;
13
14 import org.slf4j.Logger;
15 import org.slf4j.LoggerFactory;
16
17 /**
18  * 
19  */
20 public class ThreadPoolLoggingExecutor extends ThreadPoolExecutor {
21     
22     private static Logger LOG = LoggerFactory.getLogger(ThreadPoolLoggingExecutor.class);
23
24     /**
25      * @param corePoolSize
26      * @param maximumPoolSize
27      * @param keepAliveTime
28      * @param unit
29      * @param workQueue
30      */
31     public ThreadPoolLoggingExecutor(int corePoolSize, int maximumPoolSize,
32             long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) {
33         super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue);
34     }
35
36     @Override
37     protected void afterExecute(Runnable r, Throwable t) {
38         super.afterExecute(r, t);
39         // in case of executing pure Runnable
40         if (t != null) {
41             LOG.warn("thread in pool stopped with error", t);
42         }
43     }
44 }