Interface BackendStartContext
-
public interface BackendStartContext
A start context for backends.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BeanResolver
beanResolver()
ConfigurationPropertySource
configurationPropertySource()
ContextualFailureCollector
failureCollector()
A collector of (non-fatal) failures, allowing to notify Hibernate Search that something went wrong and bootstrap should be aborted at some point, while still continuing the bootstrap process for some time to collect other errors that could be relevant to users.ThreadPoolProvider
threadPoolProvider()
-
-
-
Method Detail
-
failureCollector
ContextualFailureCollector failureCollector()
A collector of (non-fatal) failures, allowing to notify Hibernate Search that something went wrong and bootstrap should be aborted at some point, while still continuing the bootstrap process for some time to collect other errors that could be relevant to users.- Returns:
- A failure collector.
-
beanResolver
BeanResolver beanResolver()
- Returns:
- A
BeanResolver
.
-
configurationPropertySource
ConfigurationPropertySource configurationPropertySource()
-
threadPoolProvider
ThreadPoolProvider threadPoolProvider()
-
-