Interface HotRodConnectionProvider

  • All Superinterfaces:
    org.keycloak.provider.Provider
    All Known Implementing Classes:
    DefaultHotRodConnectionProvider

    public interface HotRodConnectionProvider
    extends org.keycloak.provider.Provider
    Author:
    Martin Kanis
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      <K,​V>
      org.infinispan.client.hotrod.RemoteCache<K,​V>
      getRemoteCache​(String name)
      Returns a remote Infinispan cache specified by the given name.
      • Methods inherited from interface org.keycloak.provider.Provider

        close
    • Method Detail

      • getRemoteCache

        <K,​V> org.infinispan.client.hotrod.RemoteCache<K,​V> getRemoteCache​(String name)
        Returns a remote Infinispan cache specified by the given name.
        Type Parameters:
        K - key
        V - value
        Parameters:
        name - String Name of the remote cache.
        Returns:
        A remote Infinispan cache specified by name.