source: josm/trunk/src/org/openstreetmap/josm/data/cache/ICachedLoaderListener.java@ 8168

Last change on this file since 8168 was 8168, checked in by bastiK, 9 years ago

see #11216 - Limit size of TMS cache (patch by wiktorn)

File size: 332 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.cache;
3
4public interface ICachedLoaderListener {
5 /**
6 * Will be called when K object was successfully downloaded
7 *
8 * @param data
9 * @param success
10 */
11 public void loadingFinished(CacheEntry data, boolean success);
12
13}
Note: See TracBrowser for help on using the repository browser.