001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.data.osm;
003
004/**
005 * A listener that listens to changes on the {@link ChangesetCache}
006 * @see ChangesetCacheEvent
007 */
008@FunctionalInterface
009public interface ChangesetCacheListener {
010
011    /**
012     * Gets notified on changeset cache updates
013     * @param event The event that happened
014     */
015    void changesetCacheUpdated(ChangesetCacheEvent event);
016}