Interface DataLoaderConfigurer<T extends DataLoader,C extends DataLoaderConfig>
-
- Type Parameters:
T
- the type ofDataLoader
this configurer producesC
- the type ofDataLoaderConfig
this configurer consumes
- All Known Subinterfaces:
SingleCellDataLoaderConfigurer<T>
- All Known Implementing Classes:
AbstractAnnDataSingleCellDataLoaderConfigurer
,AbstractMexSingleCellDataLoaderConfigurer
,AnnDataSingleCellDataLoaderConfigurer
,GenericMetadataSingleCellDataLoaderConfigurer
,MexSingleCellDataLoaderConfigurer
,NullSingleCellDataLoaderConfigurer
,SequencingMetadataFileSingleCellDataLoaderConfigurer
public interface DataLoaderConfigurer<T extends DataLoader,C extends DataLoaderConfig>
Configures aDataLoader
from aDataLoaderConfig
.The main reason we have this is to allow for different data loading strategies for a given configuration.
- Author:
- poirigui
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
configureLoader(C config)
Create aDataLoader
from the given configuration.
-
-
-
Method Detail
-
configureLoader
T configureLoader(C config)
Create aDataLoader
from the given configuration.
-
-