Changeset 8512 in josm for trunk/src/org/openstreetmap/josm/data/cache
- Timestamp:
- 2015-06-21T01:13:09+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/cache
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/cache/ICachedLoaderJob.java
r8470 r8512 16 16 * @return cache key for tile 17 17 */ 18 publicK getCacheKey();18 K getCacheKey(); 19 19 20 20 /** … … 23 23 * 24 24 */ 25 public URL getUrl(); 25 URL getUrl(); 26 26 27 /** 27 28 * implements the main algorithm for fetching 28 29 */ 29 publicvoid run();30 void run(); 30 31 31 32 /** … … 34 35 * @return filled tile with data or null when no cache entry found 35 36 */ 36 publicCacheEntry get();37 CacheEntry get(); 37 38 38 39 /** … … 42 43 * @param force true if the load should skip all the caches (local & remote) 43 44 */ 44 publicvoid submit(ICachedLoaderListener listener, boolean force);45 void submit(ICachedLoaderListener listener, boolean force); 45 46 } -
trunk/src/org/openstreetmap/josm/data/cache/ICachedLoaderListener.java
r8470 r8512 23 23 * @param result load result (success, failure, canceled) 24 24 */ 25 publicvoid loadingFinished(CacheEntry data, CacheEntryAttributes attributes, LoadResult result);25 void loadingFinished(CacheEntry data, CacheEntryAttributes attributes, LoadResult result); 26 26 }
Note:
See TracChangeset
for help on using the changeset viewer.