A
- the annotation type that the factory supportsK
- the type of the event's keyV
- the type of event's valueU
- the type of resulting transformed valuepublic interface MapEventTransformerFactory<A extends java.lang.annotation.Annotation,K,V,U>
MapEventTransformer
for a given Annotation
.
A MapEventTransformerFactory
is normally a CDI
bean that is also annotated with a MapEventTransformerBinding
annotation. Whenever an injection point annotated with the corresponding
MapEventTransformerBinding
annotation is encountered the
MapEventTransformerFactory
bean's
create(Annotation)
method is called to create an instance of a MapEventTransformer
.
Modifier and Type | Method and Description |
---|---|
com.tangosol.util.MapEventTransformer<K,V,U> |
create(A annotation)
Create a
MapEventTransformer instance. |