blob: b1d063b6ab6ffd6e629bf9d900dd44add6f6b0bf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 20016 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 Corporation - initial API and implementation
* Mikael Barbero (Eclipse Foundation) - Bug 498116
*******************************************************************************/
package org.eclipse.equinox.internal.provisional.p2.updatechecker;
/**
* An IUpdateListener informs listeners that an update is available for
* the specified profile. Listeners should expect to receive this notification
* from a background thread.
*/
public interface IUpdateListener {
public void updatesAvailable(UpdateEvent event);
public void checkingForUpdates();
}