public class JDBCExtractionNamespaceFunctionFactory extends Object implements ExtractionNamespaceFunctionFactory<JDBCExtractionNamespace>
| Constructor and Description |
|---|
JDBCExtractionNamespaceFunctionFactory() |
| Modifier and Type | Method and Description |
|---|---|
com.google.common.base.Function<String,String> |
build(JDBCExtractionNamespace extractionNamespace,
Map<String,String> cache)
Create a function for the given namespace which will do the manipulation requested in the extractionNamespace.
|
Callable<String> |
getCachePopulator(JDBCExtractionNamespace namespace,
String lastVersion,
Map<String,String> cache)
This function is called once if `ExtractionNamespace.getUpdateMs() == 0`, or every update if
`ExtractionNamespace.getUpdateMs() > 0`
For ExtractionNamespace which have the NamespaceExtractionCacheManager handle regular updates, this function
is used to populate the namespace cache each time.
|
public JDBCExtractionNamespaceFunctionFactory()
public com.google.common.base.Function<String,String> build(JDBCExtractionNamespace extractionNamespace, Map<String,String> cache)
ExtractionNamespaceFunctionFactorybuild in interface ExtractionNamespaceFunctionFactory<JDBCExtractionNamespace>extractionNamespace - The ExtractionNamespace for which a manipulating function is needed.public Callable<String> getCachePopulator(JDBCExtractionNamespace namespace, String lastVersion, Map<String,String> cache)
ExtractionNamespaceFunctionFactorygetCachePopulator in interface ExtractionNamespaceFunctionFactory<JDBCExtractionNamespace>namespace - The ExtractionNamespace for which to populate data.lastVersion - The version which was last cachedcache - The temporary Map into which data may be placed and will be "swapped" with the proper
namespace Map in NamespaceExtractionCacheManager. Implementations which cannot offer
a swappable cache of the data may ignore this but must make sure `build(...)` returns
a proper Function.Copyright © 2011–2015. All rights reserved.