public interface PollingStrategyProvider
Java service loader service to create a polling strategy factory based on meta configuration.
- 
Method SummaryModifier and TypeMethodDescriptionCreate an instance of the meta configurable using the provided meta configuration.Return a set of supported types.booleanReturn true if this provider supports the type of meta-configurable object.
- 
Method Details- 
supportsReturn true if this provider supports the type of meta-configurable object.- Parameters:
- type- type that is supported (such as- filefor- ConfigSourcemeta configurable)
- Returns:
- trueif this provider can create instances of the type
 
- 
createCreate an instance of the meta configurable using the provided meta configuration.- Parameters:
- type- type of the meta configurable
- metaConfig- meta configuration
- Returns:
- meta configurable configured from the metaConfig
 
- 
supportedReturn a set of supported types. Used for error handling.- Returns:
- a set of types supported by this provider
 
 
-