Interface MapEventTransformerFactory<A extends java.lang.annotation.Annotation,K,V,U>
- 
- Type Parameters:
 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 value
public interface MapEventTransformerFactory<A extends java.lang.annotation.Annotation,K,V,U>A factory that produces instances ofMapEventTransformerfor a givenAnnotation.A
MapEventTransformerFactoryis normally a CDI bean that is also annotated with aMapEventTransformerBindingannotation. Whenever an injection point annotated with the correspondingMapEventTransformerBindingannotation is encountered theMapEventTransformerFactorybean'screate(Annotation)method is called to create an instance of aMapEventTransformer.- Since:
 - 1.0
 - Author:
 - Jonathan Knight
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.tangosol.util.MapEventTransformer<K,V,U>create(A annotation)Create aMapEventTransformerinstance. 
 -