blob: 5f2cdfaca868bb4f2a23c554593575a42a03351e [file] [log] [blame]
/*
* Copyright (C) 2011, Google Inc. and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.eclipse.jgit.internal.storage.dfs;
import org.eclipse.jgit.events.RepositoryListener;
/**
* Receives {@link org.eclipse.jgit.internal.storage.dfs.DfsPacksChangedEvent}s.
*/
public interface DfsPacksChangedListener extends RepositoryListener {
/**
* Invoked when all packs in a repository are listed.
*
* @param event
* information about the packs.
*/
void onPacksChanged(DfsPacksChangedEvent event);
}