Package com.tangosol.net
Class DefaultCacheServer.LifecycleContext
- java.lang.Object
-
- com.tangosol.net.DefaultCacheServer.LifecycleContext
-
- All Implemented Interfaces:
Context
- Enclosing class:
- DefaultCacheServer
protected class DefaultCacheServer.LifecycleContext extends Object implements Context
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.tangosol.application.Context
Context.ExtendedContext
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedLifecycleContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetApplicationName()Return the name of the application.StringgetCacheConfigURI()Return the cache configuration URI.CacheFactoryBuildergetCacheFactoryBuilder()Return theCacheFactoryBuilderin use.ClassLoadergetClassLoader()Return theClassLoaderin use.ConfigurableCacheFactorygetConfigurableCacheFactory()Return the correspondingConfigurableCacheFactory.ContainerContextgetContainerContext()Return theContainerContextassociated with the ContainerAdapter.Context.ExtendedContextgetExtendedContext()Deprecated.StringgetPofConfigURI()Return the POF configuration URI.ServiceMonitorgetServiceMonitor()Return the keep-alive facility for the application services.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.tangosol.application.Context
getDefaultScope, getNamedSerializer
-
-
-
-
Method Detail
-
getConfigurableCacheFactory
public ConfigurableCacheFactory getConfigurableCacheFactory()
Description copied from interface:ContextReturn the correspondingConfigurableCacheFactory. This method will return the same reference as a call toctx.getExtendedContext().getCacheFactoryBuilder(). getConfigurableCacheFactory(ctx.getClassLoader());- Specified by:
getConfigurableCacheFactoryin interfaceContext- Returns:
- the
ConfigurableCacheFactory
-
getCacheFactoryBuilder
public CacheFactoryBuilder getCacheFactoryBuilder()
Description copied from interface:ContextReturn theCacheFactoryBuilderin use.- Specified by:
getCacheFactoryBuilderin interfaceContext- Returns:
- the
CacheFactoryBuilder
-
getClassLoader
public ClassLoader getClassLoader()
Description copied from interface:ContextReturn theClassLoaderin use.- Specified by:
getClassLoaderin interfaceContext- Returns:
- the
ClassLoader
-
getApplicationName
public String getApplicationName()
Description copied from interface:ContextReturn the name of the application.- Specified by:
getApplicationNamein interfaceContext- Returns:
- the name of the application
-
getServiceMonitor
public ServiceMonitor getServiceMonitor()
Description copied from interface:ContextReturn the keep-alive facility for the application services.- Specified by:
getServiceMonitorin interfaceContext- Returns:
- the
ServiceMonitor
-
getPofConfigURI
public String getPofConfigURI()
Description copied from interface:ContextReturn the POF configuration URI.For advanced use cases, the resource identified by this URI can be found by calling:
ctx.getExtendedContext().getClassLoader().getResource(ctx.getPofConfigUri());- Specified by:
getPofConfigURIin interfaceContext- Returns:
- the POF configuration URI
-
getCacheConfigURI
public String getCacheConfigURI()
Description copied from interface:ContextReturn the cache configuration URI.- Specified by:
getCacheConfigURIin interfaceContext- Returns:
- the cache configuration URI
-
getContainerContext
public ContainerContext getContainerContext()
Description copied from interface:ContextReturn theContainerContextassociated with the ContainerAdapter.- Specified by:
getContainerContextin interfaceContext- Returns:
- the
ContainerContextinstance or null
-
getExtendedContext
@Deprecated public Context.ExtendedContext getExtendedContext()
Deprecated.- Specified by:
getExtendedContextin interfaceContext- Returns:
- the
Context.ExtendedContext
-
-