Bug 1023033

Summary: Missing methods from RemoteCacheManager
Product: [JBoss] JBoss Data Grid 6 Reporter: Alan Field <afield>
Component: CPP ClientAssignee: Tristan Tarrant <ttarrant>
Status: VERIFIED --- QA Contact: Alan Field <afield>
Severity: high Docs Contact:
Priority: unspecified    
Version: 6.2.0CC: mgencur, sjacobs
Target Milestone: ER5   
Target Release: 6.2.0   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Known Issue
Doc Text:
The RemoteCacheManager class does not have the following methods which are available to the Java version of the client. <itemizedlist> <listitem> <para>getCache(boolean)</para> </listitem> <listitem> <para>getCache(String, boolean)</para> </listitem> <listitem> <para>getMarshaller()</para> </listitem> </itemizedlist> Consequently, the C++ Hot Rod cannot use these methods. </para> <para> As a workaround, instead of getCache(true), use getCache(cache_name) to get the named cache and then make the cache calls with .withFlags(Flag.FORCE_RETURN_VALUE). </para> <para> Instead of getCache(cache_name, true), use getCache(cache_name) to get the named cache and then make the cache calls with .withFlags(Flag.FORCE_RETURN_VALUE).
Story Points: ---
Clone Of: Environment:
Last Closed: Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Bug Depends On:    
Bug Blocks: 1017190    

Description Alan Field 2013-10-24 13:27:30 UTC
JDG tracking bug

Comment 4 Alan Field 2013-12-17 18:32:26 UTC
Verified in ER5 that RemoteCacheManager includes all methods except isStarted(). I have a PR ready to submit that adds this method as soon as a couple of other PRs are integrated.