Interface ProcessorFactory<K,V,R>
-
- Type Parameters:
K
- the type of the Map entry keyV
- the type of the Map entry valueR
- the type of value returned by the EntryProcessor
- All Known Implementing Classes:
DefaultProcessorFactory
,NumberIncrementorFactory
,NumberMultiplierFactory
public interface ProcessorFactory<K,V,R>
A factory for processors.- Author:
- vp 2011.07.08
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InvocableMap.EntryProcessor<K,V,R>
getProcessor(String... asArgs)
Returns a processor instance.
-
-
-
Method Detail
-
getProcessor
InvocableMap.EntryProcessor<K,V,R> getProcessor(String... asArgs)
Returns a processor instance.- Parameters:
asArgs
- processor configuration arguments- Returns:
- a processor instance
-
-