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

isapego pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 65c8e264fb5 IGNITE-21522 Removed C++ example for nonexistant API 
(#11244)
65c8e264fb5 is described below

commit 65c8e264fb5904fe0583906a8ae8ec12afbae861
Author: IgGusev <igu...@gridgain.com>
AuthorDate: Tue Feb 13 14:34:22 2024 +0400

    IGNITE-21522 Removed C++ example for nonexistant API (#11244)
---
 docs/_docs/key-value-api/basic-cache-operations.adoc | 16 ++--------------
 1 file changed, 2 insertions(+), 14 deletions(-)

diff --git a/docs/_docs/key-value-api/basic-cache-operations.adoc 
b/docs/_docs/key-value-api/basic-cache-operations.adoc
index 7205cd0c31a..c526d6722b1 100644
--- a/docs/_docs/key-value-api/basic-cache-operations.adoc
+++ b/docs/_docs/key-value-api/basic-cache-operations.adoc
@@ -199,15 +199,7 @@ TV Get(TK key);
 Task<TV> GetAsync(TK key);
 
 ----
-tab:C++[]
-[source,cpp]
-----
-// a synchronous get
-V Get(K key);
-
-// an asynchronous get
-Future<V> GetAsync(K key);
-----
+tab:C++[unsupported]
 --
 
 The asynchronous operations return an object that represents the result of the 
operation. You can wait for the completion of the operation in either blocking 
or non-blocking manner.
@@ -238,11 +230,7 @@ tab:C#/.NET[]
 ----
 include::code-snippets/dotnet/BasicCacheOperations.cs[tag=asyncExec,indent=0]
 ----
-tab:C++[]
-[source,cpp]
-----
-include::code-snippets/cpp/src/cache_asynchronous_execution.cpp[tag=cache-asynchronous-execution,indent=0]
-----
+tab:C++[unsupported]
 --
 
 

Reply via email to