Package io.micronaut.coherence
Class MapEventTransformerFactories
- java.lang.Object
-
- io.micronaut.coherence.MapEventTransformerFactories
-
@Factory public class MapEventTransformerFactories extends java.lang.ObjectA Micronaut factory for producingMapEventTransformerinstances.- Since:
- 1.0
- Author:
- Jonathan Knight
-
-
Field Summary
Fields Modifier and Type Field Description protected io.micronaut.context.ApplicationContextctxThe Micronaut bean context.protected ExtractorFactoriesextractorFactoryThe extractor factory for use when creating views.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <K,V,U>
com.tangosol.util.MapEventTransformer<K,V,U>resolve(java.util.Set<java.lang.annotation.Annotation> annotations)Resolve aMapEventTransformerfrom the specified qualifier annotations.
-
-
-
Field Detail
-
ctx
protected final io.micronaut.context.ApplicationContext ctx
The Micronaut bean context.
-
extractorFactory
protected final ExtractorFactories extractorFactory
The extractor factory for use when creating views.
-
-
Method Detail
-
resolve
public <K,V,U> com.tangosol.util.MapEventTransformer<K,V,U> resolve(java.util.Set<java.lang.annotation.Annotation> annotations)
Resolve aMapEventTransformerfrom the specified qualifier annotations.- Type Parameters:
K- the type of the keys of the entry to be transformedV- the type of the values of the entry to be transformedU- the type of the transformed values- Parameters:
annotations- the qualifier annotations to use to create the transformer- Returns:
- a
MapEventTransformerfrom the specified qualifier annotations
-
-