001/*******************************************************************************
002 * Copyright (c) 2006-2013 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *******************************************************************************/
009package org.nuxeo.ecm.core.management.works;
010
011import javax.management.MXBean;
012
013@MXBean
014public interface WorksQueueMonitoringMBean {
015
016    int getScheduledCount();
017
018    int getRunningCount();
019
020    int getCompletedCount();
021
022    String[] getScheduledWorks();
023
024    String[] getRunningWorks();
025
026}