Interface PipelineBlockFactory
- 
public interface PipelineBlockFactory 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PipelineBlockcreate(AlarmNotificationContext context, PropertySet configProps)Create aPipelineBlockwith the givenconfigProps.java.lang.StringgetId() 
 - 
 
- 
- 
Method Detail
- 
getId
java.lang.String getId()
- Returns:
 - A unique identifier for this factory, e.g. "com.example.MyPipelineBlockFactory".
 
 
- 
create
PipelineBlock create(AlarmNotificationContext context, PropertySet configProps)
Create aPipelineBlockwith the givenconfigProps. In addition to this block's configuration properties, configProps will contain values forPipelineDescriptor.DROPOUT_CONDITIONSandPipelineDescriptor.FALLBACK_PIPELINEon the pipeline this block instance will run in.- Parameters:
 context- TheAlarmNotificationContext.configProps- This block's configuration properties, plusPipelineDescriptor.DROPOUT_CONDITIONSandPipelineDescriptor.FALLBACK_PIPELINE.
 
 - 
 
 -