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 aCoherenceConfigurer
directly unless they are using it to supply the implementations for Spring Beans.- Since:
- 3.0
- Author:
- Gunnar Hillert
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.tangosol.net.Coherence
getCoherence()
Responsible for returning theCoherence
instance.com.tangosol.net.CoherenceConfiguration
getCoherenceConfiguration()
Responsible for creating theCoherenceConfiguration
for theCoherenceServer
.CoherenceServer
getCoherenceServer()
Returns theCoherenceServer
instance.
-
-
-
Method Detail
-
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
-
-