Interface LuceneEndpointBuilderFactory.LuceneEndpointBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- Enclosing interface:
- LuceneEndpointBuilderFactory
public static interface LuceneEndpointBuilderFactory.LuceneEndpointBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Builder for endpoint for the Lucene component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default LuceneEndpointBuilderFactory.AdvancedLuceneEndpointBuilder
advanced()
default LuceneEndpointBuilderFactory.LuceneEndpointBuilder
analyzer(Object analyzer)
An Analyzer builds TokenStreams, which analyze text.default LuceneEndpointBuilderFactory.LuceneEndpointBuilder
analyzer(String analyzer)
An Analyzer builds TokenStreams, which analyze text.default LuceneEndpointBuilderFactory.LuceneEndpointBuilder
indexDir(File indexDir)
A file system directory in which index files are created upon analysis of the document by the specified analyzer.default LuceneEndpointBuilderFactory.LuceneEndpointBuilder
indexDir(String indexDir)
A file system directory in which index files are created upon analysis of the document by the specified analyzer.default LuceneEndpointBuilderFactory.LuceneEndpointBuilder
lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message).default LuceneEndpointBuilderFactory.LuceneEndpointBuilder
lazyStartProducer(String lazyStartProducer)
Whether the producer should be started lazy (on the first message).default LuceneEndpointBuilderFactory.LuceneEndpointBuilder
maxHits(int maxHits)
An integer value that limits the result set of the search operation.default LuceneEndpointBuilderFactory.LuceneEndpointBuilder
maxHits(String maxHits)
An integer value that limits the result set of the search operation.default LuceneEndpointBuilderFactory.LuceneEndpointBuilder
srcDir(File srcDir)
An optional directory containing files to be used to be analyzed and added to the index at producer startup.default LuceneEndpointBuilderFactory.LuceneEndpointBuilder
srcDir(String srcDir)
An optional directory containing files to be used to be analyzed and added to the index at producer startup.
-
-
-
Method Detail
-
advanced
default LuceneEndpointBuilderFactory.AdvancedLuceneEndpointBuilder advanced()
-
analyzer
default LuceneEndpointBuilderFactory.LuceneEndpointBuilder analyzer(Object analyzer)
An Analyzer builds TokenStreams, which analyze text. It thus represents a policy for extracting index terms from text. The value for analyzer can be any class that extends the abstract class org.apache.lucene.analysis.Analyzer. Lucene also offers a rich set of analyzers out of the box. The option is a:org.apache.lucene.analysis.Analyzer
type. Group: producer
-
analyzer
default LuceneEndpointBuilderFactory.LuceneEndpointBuilder analyzer(String analyzer)
An Analyzer builds TokenStreams, which analyze text. It thus represents a policy for extracting index terms from text. The value for analyzer can be any class that extends the abstract class org.apache.lucene.analysis.Analyzer. Lucene also offers a rich set of analyzers out of the box. The option will be converted to aorg.apache.lucene.analysis.Analyzer
type. Group: producer
-
indexDir
default LuceneEndpointBuilderFactory.LuceneEndpointBuilder indexDir(File indexDir)
A file system directory in which index files are created upon analysis of the document by the specified analyzer. The option is a:java.io.File
type. Group: producer
-
indexDir
default LuceneEndpointBuilderFactory.LuceneEndpointBuilder indexDir(String indexDir)
A file system directory in which index files are created upon analysis of the document by the specified analyzer. The option will be converted to ajava.io.File
type. Group: producer
-
lazyStartProducer
default LuceneEndpointBuilderFactory.LuceneEndpointBuilder lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option is a:boolean
type. Default: false Group: producer
-
lazyStartProducer
default LuceneEndpointBuilderFactory.LuceneEndpointBuilder lazyStartProducer(String lazyStartProducer)
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option will be converted to aboolean
type. Default: false Group: producer
-
maxHits
default LuceneEndpointBuilderFactory.LuceneEndpointBuilder maxHits(int maxHits)
An integer value that limits the result set of the search operation. The option is a:int
type. Group: producer
-
maxHits
default LuceneEndpointBuilderFactory.LuceneEndpointBuilder maxHits(String maxHits)
An integer value that limits the result set of the search operation. The option will be converted to aint
type. Group: producer
-
srcDir
default LuceneEndpointBuilderFactory.LuceneEndpointBuilder srcDir(File srcDir)
An optional directory containing files to be used to be analyzed and added to the index at producer startup. The option is a:java.io.File
type. Group: producer
-
srcDir
default LuceneEndpointBuilderFactory.LuceneEndpointBuilder srcDir(String srcDir)
An optional directory containing files to be used to be analyzed and added to the index at producer startup. The option will be converted to ajava.io.File
type. Group: producer
-
-