Interface Context

All Known Subinterfaces:
Context.ExtendedContext
All Known Implementing Classes:
ContainerAdapter.DefaultContext, DefaultCacheServer.LifecycleContext

public interface Context
Context represents various aspects of Coherence infrastructure that could be accessed by application code working in the context of the ContainerAdapter.
Since:
Coherence 12.1.2
Author:
cf 2011.07.01
  • Method Details

    • getConfigurableCacheFactory

      ConfigurableCacheFactory getConfigurableCacheFactory()
      Return the corresponding ConfigurableCacheFactory. This method will return the same reference as a call to
          ctx.getExtendedContext().getCacheFactoryBuilder().
            getConfigurableCacheFactory(ctx.getClassLoader());
       
      Returns:
      the ConfigurableCacheFactory
    • getCacheFactoryBuilder

      CacheFactoryBuilder getCacheFactoryBuilder()
      Return the CacheFactoryBuilder in use.
      Returns:
      the CacheFactoryBuilder
    • getClassLoader

      ClassLoader getClassLoader()
      Return the ClassLoader in use.
      Returns:
      the ClassLoader
    • getApplicationName

      String getApplicationName()
      Return the name of the application.
      Returns:
      the name of the application
    • getServiceMonitor

      ServiceMonitor getServiceMonitor()
      Return the keep-alive facility for the application services.
      Returns:
      the ServiceMonitor
    • getPofConfigURI

      String getPofConfigURI()
      Return 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());
       

      Returns:
      the POF configuration URI
    • getCacheConfigURI

      String getCacheConfigURI()
      Return the cache configuration URI.
      Returns:
      the cache configuration URI
    • getContainerContext

      ContainerContext getContainerContext()
      Return the ContainerContext associated with the ContainerAdapter.
      Returns:
      the ContainerContext instance or null
    • getDefaultScope

      default String getDefaultScope()
      Returns the default scope name to use.
      Returns:
      the default scope name to use
    • getNamedSerializer

      default Serializer getNamedSerializer(String sName)
      Produces instances of a named Serializer.
      Parameters:
      sName - the name of the serializer
      Returns:
      an instance of a named Serializer
      Throws:
      NullPointerException - if the name parameter is null
      IllegalArgumentException - if no serializer is discoverable with the specified name
    • getExtendedContext

      Context.ExtendedContext getExtendedContext()
      Deprecated.
      as useless, left for backward compatibility only
      Returns:
      the Context.ExtendedContext