blob: 4c98bfdfead0748f94460c47a6613d73f626643d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM - Initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.progress;
import org.eclipse.core.runtime.jobs.Job;
/**
* The IJobBusyListener is used to listen for running and terminating of jobs of
* a particular family.
*/
interface IJobBusyListener {
/**
* Increment the busy count for job.
*
* @param job
*/
void incrementBusy(Job job);
/**
* Decrement the busy count for job.
*
* @param job
*/
void decrementBusy(Job job);
}