2 * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
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
9 package org.opendaylight.controller.config.threadpool.util;
11 import com.google.common.eventbus.AsyncEventBus;
12 import com.google.common.eventbus.DeadEvent;
13 import com.google.common.eventbus.Subscribe;
14 import java.io.Closeable;
15 import java.io.IOException;
16 import org.opendaylight.controller.config.threadpool.ThreadPool;
17 import org.opendaylight.controller.config.yang.threadpool.impl.AsyncEventBusRuntimeMXBean;
18 import org.opendaylight.controller.config.yang.threadpool.impl.AsyncEventBusRuntimeRegistration;
19 import org.opendaylight.controller.config.yang.threadpool.impl.AsyncEventBusRuntimeRegistrator;
22 * Closeable version of {@link AsyncEventBus}.
25 * To be removed in Nitrogen
28 public class CloseableAsyncEventBus extends AsyncEventBus implements Closeable {
29 private final ThreadPool threadPool;
30 private final AsyncEventBusRuntimeRegistration rootRegistration;
32 public CloseableAsyncEventBus(String identifier, ThreadPool threadPool,
33 AsyncEventBusRuntimeRegistrator rootRegistrator) {
34 super(identifier, threadPool.getExecutor());
35 this.threadPool = threadPool;
36 rootRegistration = rootRegistrator.register(new AsyncEventBusRuntimeMXBean() {
37 private long deadEventsCounter = 0;
40 public void increaseDeadEvents(DeadEvent deadEvent) {
45 public Long countDeadEvents() {
46 return deadEventsCounter;
52 public ThreadPool getThreadPool() {
57 public void close() throws IOException {
58 rootRegistration.close();