You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/dev_guide/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ The Data SDK for C++ package contains three independent modules that focus on di
8
8
-`olp-cpp-sdk-dataservice-read` – downloads and caches data from the platform.
9
9
-`olp-cpp-sdk-dataservice-write` – queues and uploads data to the platform layers.
10
10
11
-
For more information about the modules, see the [architectural overview](https://github.com/heremaps/here-olp-sdk-cpp/blob/master/docs/OverallArchitecture.md).
11
+
For more information about the modules, see the [architectural overview](https://github.com/heremaps/here-data-sdk-cpp/blob/master/docs/OverallArchitecture.md).
12
12
13
13
HERE is committed to respecting your privacy and to complying with applicable data protection and privacy laws. For more information, see the [HERE Privacy Charter](https://www.here.com/en-gb/here-privacy-charter).
14
14
@@ -37,4 +37,4 @@ For more information on Data API, see its [Developer Guide](https://docs.here.co
37
37
38
38
When new API is introduced in the Data SDK for C++, the old one is not deleted straight away. The standard API deprecation time is six months. It gives you time to switch to new code. However, we do not provide ABI backward compatibility.
39
39
40
-
All of the deprecated methods, functions, and parameters are documented in the Data SDK for C++ [API Reference](https://heremaps.github.io/here-data-sdk-cpp/index.html) and [changelog](https://github.com/heremaps/here-olp-sdk-cpp/blob/master/CHANGELOG.md).
40
+
All of the deprecated methods, functions, and parameters are documented in the Data SDK for C++ [API Reference](https://heremaps.github.io/here-data-sdk-cpp/index.html) and [changelog](https://github.com/heremaps/here-data-sdk-cpp/blob/master/CHANGELOG.md).
You can use the HERE Data SDK for C++ to get data from catalogs. The process of getting data from catalogs depends on the layer type. Currently, we only support getting data from versioned, volatile, and stream layers. Test.
3
+
You can use the HERE Data SDK for C++ to get data from catalogs. The process of getting data from catalogs depends on the layer type. Currently, we only support getting data from versioned, volatile, and stream layers.
4
4
5
5
-[Get data from a versioned layer](../../dataservice-read-catalog-example.md#get-data-from-a-versioned-layer)
6
6
-[Get data from a versioned layer with a cache](../../dataservice-cache-example.md#get-data-from-a-versioned-layer-with-a-cache)
7
7
-[Get data from a volatile layer](get-data-from-volatile-layer.md)
8
-
-[Get data from a stream layer](../../dataservice-read-from-stream-layer-example.md#get-data-from-a-stream-layer)
8
+
-[Get data from a stream layer](get-data-from-stream-layer.md)
Copy file name to clipboardExpand all lines: docs/dev_guide/topics/get-partition-metadata.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Partition metadata consists of the following information about the partition:
13
13
14
14
1. Create the `OlpClientSettings` object.
15
15
16
-
For instructions, see [Create platform client settings](../docs/create-platform-client-settings.md).
16
+
For instructions, see [Create platform client settings](../../create-platform-client-settings.md).
17
17
18
18
2. Depending on the layer type, create a versioned or volatile layer client with the HERE Resource Name (HRN), layer ID, layer version, and platform client settings from step 1.
19
19
@@ -43,7 +43,7 @@ Partition metadata consists of the following information about the partition:
Copy file name to clipboardExpand all lines: docs/dev_guide/topics/manage-eviction-protection.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ You can also remove tile keys from protection.
39
39
- If you want to remove tile keys from protection, make sure that the `Protect` method is not in progress, and then call the `Release` method with the list of tile keys that you want to remove from protection.
40
40
41
41
```cpp
42
-
layer_client.Protect(<vector of tile keys>);
42
+
layer_client.Release(<vector of tile keys>);
43
43
```
44
44
45
45
Data and keys of the specified tiles are removed from the protected list. The keys are added to the LRU cache. Now, they can be evicted. Expiration value is restored, and keys can expire. The quadtree can be removed from the protected list if all tile keys are no longer protected.
0 commit comments