Interface CoherenceConfigurer
- All Known Implementing Classes:
DefaultCoherenceConfigurer
public interface CoherenceConfigurer
Provides a strategy interface in order to customize the Coherence configuration.
Users should typically not directly use getter methods from a
CoherenceConfigurer
directly unless they are using it to supply the implementations for Spring Beans.- Since:
- 3.0
- Author:
- Gunnar Hillert
-
Method Summary
Modifier and TypeMethodDescriptioncom.tangosol.net.Coherence
Responsible for returning theCoherence
instance.com.tangosol.net.CoherenceConfiguration
Responsible for creating theCoherenceConfiguration
for theCoherenceServer
.Returns theCoherenceServer
instance.
-
Method Details
-
getCoherence
com.tangosol.net.Coherence getCoherence()Responsible for returning theCoherence
instance.- Returns:
- the Coherence instance
-
getCoherenceConfiguration
com.tangosol.net.CoherenceConfiguration getCoherenceConfiguration()Responsible for creating theCoherenceConfiguration
for theCoherenceServer
.- Returns:
- the configuration for a Coherence instance
-
getCoherenceServer
CoherenceServer getCoherenceServer()Returns theCoherenceServer
instance. Use theCoherenceServer
to start and stop theCoherence
instance.- Returns:
- the Coherence Server
-