\r\n

51Degrees Device Detection C/C++  4.4

A device detection library that is used natively or by 51Degrees products

CollectionConfig.hpp

1 /* *********************************************************************
2  * This Original Work is copyright of 51 Degrees Mobile Experts Limited.
3  * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House,
4  * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU.
5  *
6  * This Original Work is licensed under the European Union Public Licence
7  * (EUPL) v.1.2 and is subject to its terms as set out below.
8  *
9  * If a copy of the EUPL was not distributed with this file, You can obtain
10  * one at https://opensource.org/licenses/EUPL-1.2.
11  *
12  * The 'Compatible Licences' set out in the Appendix to the EUPL (as may be
13  * amended by the European Commission) shall be deemed incompatible for
14  * the purposes of the Work and the provisions of the compatibility
15  * clause in Article 5 of the EUPL shall not apply.
16  *
17  * If using the Work as, or as part of, a network application, by
18  * including the attribution notice(s) required under Article 5 of the EUPL
19  * in the end user terms of the application under an appropriate heading,
20  * such notice(s) shall fulfill the requirements of that article.
21  * ********************************************************************* */
22 
23 #ifndef FIFTYONE_DEGREES_COLLECTION_CONFIG_HPP
24 #define FIFTYONE_DEGREES_COLLECTION_CONFIG_HPP
25 
26 #include "Exceptions.hpp"
27 #include "collection.h"
28 
29 namespace FiftyoneDegrees {
30  namespace Common {
51  public:
64 
72 
83  void setCapacity(uint32_t capacity);
84 
89  void setConcurrency(uint16_t concurrency);
90 
96  void setLoaded(uint32_t loaded);
97 
108  uint32_t getCapacity() const;
109 
114  uint16_t getConcurrency() const;
115 
121  uint32_t getLoaded() const;
122 
128 
133  private:
136  };
137  }
138 }
139 
140 #endif
C++ class wrapper for the fiftyoneDegreesCollectionConfig structure.
Definition: CollectionConfig.hpp:50
CollectionConfig()
Construct a new instance of CollectionConfig with the default configuration.
51Degrees base namespace.
Definition: ComponentMetaDataBuilderHash.hpp:33
uint32_t getLoaded() const
Get the number of items to load into memory from the start of the collection.
uint16_t getConcurrency() const
Get the expected number of concurrent requests.
fiftyoneDegreesCollectionConfig * getConfig() const
Get a pointer to the underlying configuration structure.
void setConcurrency(uint16_t concurrency)
Set the expected number of concurrent requests.
uint32_t getCapacity() const
Get the number of items the cache should store, 0 for no cache.
Collection configuration structure which defines how the collection should be created by the create m...
Definition: collection.h:289
void setLoaded(uint32_t loaded)
Set the number of items to load into memory from the start of the collection.
void setCapacity(uint32_t capacity)
Set the number of items the cache should store, 0 for no cache.