X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-common-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fcommon%2Futil%2Fjmx%2FQueuedNotificationManagerMXBean.java;fp=opendaylight%2Fmd-sal%2Fsal-common-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fcommon%2Futil%2Fjmx%2FQueuedNotificationManagerMXBean.java;h=0000000000000000000000000000000000000000;hb=ecf38b90583e84c6362aaf32c24fd356f25d5e46;hp=9646adc773508c681b132d95c7ee41c80414346c;hpb=dff8181ffc7175b74be00ee6f983a9838d3dce89;p=mdsal.git diff --git a/opendaylight/md-sal/sal-common-util/src/main/java/org/opendaylight/controller/md/sal/common/util/jmx/QueuedNotificationManagerMXBean.java b/opendaylight/md-sal/sal-common-util/src/main/java/org/opendaylight/controller/md/sal/common/util/jmx/QueuedNotificationManagerMXBean.java deleted file mode 100644 index 9646adc773..0000000000 --- a/opendaylight/md-sal/sal-common-util/src/main/java/org/opendaylight/controller/md/sal/common/util/jmx/QueuedNotificationManagerMXBean.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) 2014 Brocade Communications Systems, Inc. and others. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ - -package org.opendaylight.controller.md.sal.common.util.jmx; - -import java.util.List; - -import org.opendaylight.yangtools.util.concurrent.ListenerNotificationQueueStats; - -/** - * MXBean interface for {@link QueuedNotificationManager} statistic metrics. - * - * @author Thomas Pantelis - */ -public interface QueuedNotificationManagerMXBean { - - /** - * Returns a list of stat instances for each current listener notification task in progress. - */ - List getCurrentListenerQueueStats(); - - /** - * Returns the configured maximum listener queue size. - */ - int getMaxListenerQueueSize(); -}