You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by mm...@apache.org on 2020/10/30 21:36:06 UTC

[geode-native] branch develop updated: GEODE-8678: Add missing API docs (#684)

This is an automated email from the ASF dual-hosted git repository.

mmartell pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new 0d9a99d  GEODE-8678: Add missing API docs (#684)
0d9a99d is described below

commit 0d9a99d5e0632de62df17921950cf3f6640efb33
Author: Michael Martell <mm...@pivotal.io>
AuthorDate: Fri Oct 30 14:35:55 2020 -0700

    GEODE-8678: Add missing API docs (#684)
    
    For Cache::GetPoolManager() and Cache::GetPoolFactory()
---
 clicache/src/Cache.hpp | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/clicache/src/Cache.hpp b/clicache/src/Cache.hpp
index 495ecff..ab7bce4 100644
--- a/clicache/src/Cache.hpp
+++ b/clicache/src/Cache.hpp
@@ -268,8 +268,18 @@ namespace Apache
         
         virtual DataOutput^ Cache::CreateDataOutput();
 
+        /// <summary>
+        /// Returns a PoolFactory that can be used to create a Pool and that provides
+        /// access to all Pool attributes.
+        /// @return the PoolFactory
+        /// </summary>
         virtual PoolFactory^ GetPoolFactory();
 
+        /// <summary>
+        /// Returns a PoolManager that provides for the configuration and creation
+        /// of instances of PoolFactory.
+        /// @return the PoolManager
+        /// </summary>
         virtual PoolManager^ GetPoolManager();
 
         property Apache::Geode::Client::TypeRegistry^ TypeRegistry