Interface HotRodConnectionProvider
- 
- All Superinterfaces:
- Provider
 - All Known Implementing Classes:
- DefaultHotRodConnectionProvider
 
 public interface HotRodConnectionProvider extends Provider - Author:
- Martin Kanis
 
- 
- 
Method SummaryAll 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.
 
- 
- 
- 
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.
 
 
- 
 
-