Main interface to operate with Ignite.
More...
#include <ignite.h>
|
|
| Ignite () |
| | Default constructor.
|
| |
|
| Ignite (impl::IgniteImpl *impl) |
| | Constructor.
|
| |
| const char * | GetName () const |
| | Get Ignite instance name. More...
|
| |
| template<typename K , typename V > |
| cache::Cache< K, V > | GetCache (const char *name) |
| | Get cache. More...
|
| |
| template<typename K , typename V > |
| cache::Cache< K, V > | GetCache (const char *name, IgniteError *err) |
| | Get cache. More...
|
| |
| template<typename K , typename V > |
| cache::Cache< K, V > | GetOrCreateCache (const char *name) |
| | Get or create cache. More...
|
| |
| template<typename K , typename V > |
| cache::Cache< K, V > | GetOrCreateCache (const char *name, IgniteError *err) |
| | Get or create cache. More...
|
| |
| template<typename K , typename V > |
| cache::Cache< K, V > | CreateCache (const char *name) |
| | Create cache. More...
|
| |
| template<typename K , typename V > |
| cache::Cache< K, V > | CreateCache (const char *name, IgniteError *err) |
| | Create cache. More...
|
| |
| bool | IsValid () |
| | Check if the instance is valid. More...
|
| |
Main interface to operate with Ignite.
template<typename K , typename V >
| cache::Cache<K, V> ignite::Ignite::CreateCache |
( |
const char * |
name | ) |
|
|
inline |
Create cache.
- Parameters
-
- Returns
- Cache.
template<typename K , typename V >
Create cache.
- Parameters
-
| name | Cache name. |
| err | Error; |
- Returns
- Cache.
template<typename K , typename V >
| cache::Cache<K, V> ignite::Ignite::GetCache |
( |
const char * |
name | ) |
|
|
inline |
Get cache.
- Parameters
-
- Returns
- Cache.
template<typename K , typename V >
Get cache.
- Parameters
-
| name | Cache name. |
| err | Error; |
- Returns
- Cache.
| const char * ignite::Ignite::GetName |
( |
| ) |
const |
Get Ignite instance name.
- Returns
- Name.
template<typename K , typename V >
| cache::Cache<K, V> ignite::Ignite::GetOrCreateCache |
( |
const char * |
name | ) |
|
|
inline |
Get or create cache.
- Parameters
-
- Returns
- Cache.
template<typename K , typename V >
Get or create cache.
- Parameters
-
| name | Cache name. |
| err | Error; |
- Returns
- Cache.
| bool ignite::Ignite::IsValid |
( |
| ) |
|
|
inline |
Check if the instance is valid.
- Returns
- True if the instance is valid and can be used.
The documentation for this class was generated from the following files: