Package | Description |
---|---|
org.infinispan.client.hotrod |
Hot Rod client API.
|
org.infinispan.client.hotrod.event |
Hot Rod client remote event API.
|
Modifier and Type | Method and Description |
---|---|
<K,V> RemoteCache<K,V> |
RemoteCacheManagerAdmin.createCache(String name,
BasicConfiguration configuration)
Creates a cache on the remote server cluster using the specified configuration
|
<K,V> RemoteCache<K,V> |
RemoteCacheManagerAdmin.createCache(String name,
String template)
Creates a cache on the remote server cluster using the specified template.
|
<K,V> RemoteCache<K,V> |
RemoteCacheManager.getCache()
Retrieves the default cache from the remote server.
|
default <K,V> RemoteCache<K,V> |
RemoteCacheContainer.getCache(boolean forceReturnValue)
Same as
getCache("", forceReturnValue, null, null) |
<K,V> RemoteCache<K,V> |
RemoteCacheManager.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.
|
default <K,V> RemoteCache<K,V> |
RemoteCacheContainer.getCache(String cacheName,
boolean forceReturnValue)
Same as
getCache(cacheName, forceReturnValue, null, null) |
default <K,V> RemoteCache<K,V> |
RemoteCacheContainer.getCache(String cacheName,
boolean forceReturnValue,
TransactionManager transactionManager)
Same as
getCache(cacheName, forceReturnValue, null, transactionManager) |
default <K,V> RemoteCache<K,V> |
RemoteCacheContainer.getCache(String cacheName,
boolean forceReturnValue,
TransactionMode transactionMode)
Same as
getCache(cacheName, forceReturnValue, transactionMode, null) |
<K,V> RemoteCache<K,V> |
RemoteCacheManager.getCache(String cacheName,
boolean forceReturnValue,
TransactionMode transactionMode,
TransactionManager transactionManager) |
<K,V> RemoteCache<K,V> |
RemoteCacheContainer.getCache(String cacheName,
boolean forceReturnValue,
TransactionMode transactionMode,
TransactionManager transactionManager) |
default <K,V> RemoteCache<K,V> |
RemoteCacheContainer.getCache(String cacheName,
TransactionManager transactionManager)
Same as
getCache(cacheName, null, transactionManager) |
default <K,V> RemoteCache<K,V> |
RemoteCacheContainer.getCache(String cacheName,
TransactionMode transactionMode)
Same as
getCache(cacheName, transactionMode, null) |
<K,V> RemoteCache<K,V> |
RemoteCacheManager.getCache(String cacheName,
TransactionMode transactionMode,
TransactionManager transactionManager) |
<K,V> RemoteCache<K,V> |
RemoteCacheContainer.getCache(String cacheName,
TransactionMode transactionMode,
TransactionManager transactionManager) |
<K,V> RemoteCache<K,V> |
RemoteCacheManagerAdmin.getOrCreateCache(String name,
BasicConfiguration configuration)
Retrieves an existing cache on the remote server cluster.
|
<K,V> RemoteCache<K,V> |
RemoteCacheManagerAdmin.getOrCreateCache(String name,
String template)
Retrieves an existing cache on the remote server cluster.
|
<T,U> RemoteCache<T,U> |
RemoteCache.withDataFormat(DataFormat dataFormat)
Return a new instance of
RemoteCache using the supplied DataFormat . |
RemoteCache<K,V> |
RemoteCache.withFlags(Flag... flags)
Applies one or more
Flag s to the scope of a single invocation. |
Modifier and Type | Method and Description |
---|---|
static <K,V> org.infinispan.query.api.continuous.ContinuousQuery<K,V> |
Search.getContinuousQuery(RemoteCache<K,V> cache) |
static org.infinispan.query.dsl.QueryFactory |
Search.getQueryFactory(RemoteCache<?,?> cache) |
Modifier and Type | Method and Description |
---|---|
static void |
ClientEvents.addClientQueryListener(RemoteCache<?,?> remoteCache,
Object listener,
org.infinispan.query.dsl.Query query)
Register a client listener that uses a query DSL based filter.
|
Copyright © 2019 JBoss, a division of Red Hat. All rights reserved.