Class BinURLDataSource
- java.lang.Object
-
- org.apache.solr.handler.dataimport.DataSource<InputStream>
-
- org.apache.solr.handler.dataimport.BinURLDataSource
-
public class BinURLDataSource extends DataSource<InputStream>
A data source implementation which can be used to read binary streams using HTTP.
Refer to http://wiki.apache.org/solr/DataImportHandler for more details.
This API is experimental and may change in the future.
- Since:
- solr 3.1
-
-
Constructor Summary
Constructors Constructor Description BinURLDataSource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Cleans up resources of this DataSource after use.InputStreamgetData(String query)Get records for the given query.The return type depends on the implementation .voidinit(Context context, Properties initProps)Initializes the DataSource with theContextand initialization properties.
-
-
-
Method Detail
-
init
public void init(Context context, Properties initProps)
Description copied from class:DataSourceInitializes the DataSource with theContextand initialization properties.This is invoked by the
DataImporterafter creating an instance of this class.- Specified by:
initin classDataSource<InputStream>
-
getData
public InputStream getData(String query)
Description copied from class:DataSourceGet records for the given query.The return type depends on the implementation .- Specified by:
getDatain classDataSource<InputStream>- Parameters:
query- The query string. It can be a SQL for JdbcDataSource or a URL for HttpDataSource or a file location for FileDataSource or a custom format for your own custom DataSource.- Returns:
- Depends on the implementation. For instance JdbcDataSource returns an Iterator<Map <String,Object>>
-
close
public void close()
Description copied from class:DataSourceCleans up resources of this DataSource after use.- Specified by:
closein classDataSource<InputStream>
-
-