Interface SearchIntegrationPartialBuildState
-
public interface SearchIntegrationPartialBuildState
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
closeOnFailure()
Close the resources held by this object (backends, index managers, ...).SearchIntegrationFinalizer
finalizer(ConfigurationPropertySource propertySource, ConfigurationPropertyChecker propertyChecker)
-
-
-
Method Detail
-
closeOnFailure
void closeOnFailure()
Close the resources held by this object (backends, index managers, ...).To be called in the event of a failure that will prevent the integration from being finalized.
-
finalizer
SearchIntegrationFinalizer finalizer(ConfigurationPropertySource propertySource, ConfigurationPropertyChecker propertyChecker)
- Parameters:
propertySource
- The configuration property source, which may hold additional configuration compared to the one passed toSearchIntegration.builder(ConfigurationPropertySource, ConfigurationPropertyChecker)
.propertyChecker
- The configuration property checker tracking the givenconfigurationPropertySource
.- Returns:
- An object allowing the finalization of the search integration.
-
-