Interface DataLoaderProvider
- All Superinterfaces:
Serializable
,scala.Serializable
- All Known Implementing Classes:
CacheManager
public interface DataLoaderProvider
extends scala.Serializable
Deprecated.
Use methods based on OptimizedMapLayers instead. Since SDK 2.54.
-
Method Summary
Modifier and TypeMethodDescription<T> DataLoader<String,
T> getDataLoader
(Catalog catalog, String layer, Decoder<T> decoder) Deprecated.Creates aDataLoader
for a given catalog and layer.<T> TileLoader<T>
getTileLoader
(Catalog catalog, String layer, Decoder<T> decoder) Deprecated.Creates aTileLoader
for a given catalog and layer.
-
Method Details
-
getDataLoader
Deprecated.Creates aDataLoader
for a given catalog and layer.Please note that you can not use different decoders for the same layer for each instance of
DataLoaderProvider
. -
getTileLoader
Deprecated.Creates aTileLoader
for a given catalog and layer.Please note that you can not use different
Decoder
s for the same layer for each instance ofDataLoaderProvider
.
-