Class RemoteCacheManager

  • All Implemented Interfaces:
    Closeable, AutoCloseable, RemoteCacheManagerMXBean, RemoteCacheContainer, org.infinispan.commons.api.BasicCacheContainer, org.infinispan.commons.api.Lifecycle

    public class RemoteCacheManager
    extends Object
    implements RemoteCacheContainer, Closeable, RemoteCacheManagerMXBean

    Factory for RemoteCaches.

    In order to be able to use a RemoteCache, the RemoteCacheManager must be started first: this instantiates connections to Hot Rod server(s). Starting the RemoteCacheManager can be done either at creation by passing start==true to the constructor or by using a constructor that does that for you; or after construction by calling start().

    NOTE: this is an "expensive" object, as it manages a set of persistent TCP connections to the Hot Rod servers. It is recommended to only have one instance of this per JVM, and to cache it between calls to the server (i.e. remoteCache operations)

    stop() needs to be called explicitly in order to release all the resources (e.g. threads, TCP connections).

    Since:
    4.1
    Author:
    Mircea.Markus@jboss.com
    • Constructor Detail

      • RemoteCacheManager

        public RemoteCacheManager​(Configuration configuration)
        Create a new RemoteCacheManager using the supplied Configuration. The RemoteCacheManager will be started automatically
        Parameters:
        configuration - the configuration to use for this RemoteCacheManager
        Since:
        5.3
      • RemoteCacheManager

        public RemoteCacheManager​(Configuration configuration,
                                  boolean start)
        Create a new RemoteCacheManager using the supplied Configuration. The RemoteCacheManager will be started automatically only if the start parameter is true
        Parameters:
        configuration - the configuration to use for this RemoteCacheManager
        start - whether or not to start the manager on return from the constructor.
        Since:
        5.3
      • RemoteCacheManager

        public RemoteCacheManager​(boolean start)

        Similar to RemoteCacheManager(Configuration, boolean), but it will try to lookup the config properties in the classpath, in a file named hotrod-client.properties. If no properties can be found in the classpath, defaults will be used, attempting to connect to 127.0.0.1:11222

        Refer to ConfigurationBuilder for a detailed list of available properties.

        Parameters:
        start - whether or not to start the RemoteCacheManager
        Throws:
        HotRodClientException - if such a file cannot be found in the classpath
    • Method Detail

      • getConfiguration

        public Configuration getConfiguration()
        Description copied from interface: RemoteCacheContainer
        Retrieves the configuration currently in use. The configuration object is immutable. If you wish to change configuration, you should use the following pattern:
        
         ConfigurationBuilder builder = new ConfigurationBuilder();
         builder.read(remoteCacheManager.getConfiguration());
         // modify builder
         remoteCacheManager.stop();
         remoteCacheManager = new RemoteCacheManager(builder.build());
         
        Specified by:
        getConfiguration in interface RemoteCacheContainer
        Returns:
        The configuration of this RemoteCacheManager
        Since:
        5.3
      • getCache

        public <K,​V> RemoteCache<K,​V> getCache​(String cacheName)
        Retrieves a named cache from the remote server if the cache has been defined, otherwise if the cache name is undefined, it will return null.
        Specified by:
        getCache in interface org.infinispan.commons.api.BasicCacheContainer
        Parameters:
        cacheName - name of cache to retrieve
        Returns:
        a cache instance identified by cacheName or null if the cache name has not been defined
      • getCacheNames

        public Set<String> getCacheNames()
        Description copied from interface: org.infinispan.commons.api.BasicCacheContainer
        This method returns a collection of caches names which contains the caches that have been defined via XML or programmatically, and the caches that have been created at runtime via this cache manager instance. If no named caches are registered or no caches have been created, this method returns an empty set. The list of caches does not include internal-only caches InternalCacheRegistry
        Specified by:
        getCacheNames in interface org.infinispan.commons.api.BasicCacheContainer
        Returns:
        an immutable set of caches registered or created with this cache manager.
      • getCache

        public <K,​V> RemoteCache<K,​V> getCache()
        Retrieves the default cache from the remote server.
        Specified by:
        getCache in interface org.infinispan.commons.api.BasicCacheContainer
        Returns:
        a remote cache instance that can be used to send requests to the default cache in the server
      • start

        public void start()
        Description copied from interface: org.infinispan.commons.api.Lifecycle
        Invoked on component start
        Specified by:
        start in interface org.infinispan.commons.api.Lifecycle
      • stop

        public void stop()
        Stop the remote cache manager, disconnecting all existing connections. As part of the disconnection, all registered client cache listeners will be removed since client no longer can receive callbacks.
        Specified by:
        stop in interface org.infinispan.commons.api.Lifecycle
      • switchToCluster

        public boolean switchToCluster​(String clusterName)
        Description copied from interface: RemoteCacheContainer
        Switch remote cache manager to a different cluster, previously declared via configuration. If the switch was completed successfully, this method returns true, otherwise it returns false.
        Specified by:
        switchToCluster in interface RemoteCacheContainer
        Specified by:
        switchToCluster in interface RemoteCacheManagerMXBean
        Parameters:
        clusterName - name of the cluster to which to switch to
        Returns:
        true if the cluster was switched, false otherwise
      • cacheNameBytes

        public static byte[] cacheNameBytes​(String cacheName)
      • cacheNameBytes

        public static byte[] cacheNameBytes()
      • getCodec

        public org.infinispan.client.hotrod.impl.protocol.Codec getCodec()
        This method is not a part of the public API. It is exposed for internal purposes only.
      • getChannelFactory

        public org.infinispan.client.hotrod.impl.transport.netty.ChannelFactory getChannelFactory()
        This method is not a part of the public API. It is exposed for internal purposes only.