Package org.infinispan.server.test.api
Interface TestClientXSiteDriver
public interface TestClientXSiteDriver
Test client driver interface contains the methods we want to expose to be used from test methods
- Since:
- 12
- Author:
- Gustavo Lira
-
Method Summary
Modifier and TypeMethodDescriptionorg.infinispan.counter.api.CounterManagergetCounterManager(String siteName) Access to theCounterManagerto perform counters operations on testsProvides the current method name<K,V> org.infinispan.client.hotrod.multimap.MultimapCacheManager<K, V> getMultimapCacheManager(String siteName) Access to theMultimapCacheManagerto perform multimap operations on tests.Get the HotRod instance for hotrod api operationsGet the REST instance for hotrod api operations
-
Method Details
-
hotrod
Get the HotRod instance for hotrod api operations- Returns:
HotRodTestClientDriverinstance
-
rest
Get the REST instance for hotrod api operations- Returns:
RestTestClientDriverinstance}
-
getMethodName
String getMethodName()Provides the current method name- Returns:
- String, the method name
-
getCounterManager
Access to theCounterManagerto perform counters operations on tests- Returns:
- the
CounterManagerinstance
-
getMultimapCacheManager
<K,V> org.infinispan.client.hotrod.multimap.MultimapCacheManager<K,V> getMultimapCacheManager(String siteName) Access to theMultimapCacheManagerto perform multimap operations on tests.- Returns:
- the
MultimapCacheManagerinstance.
-