Transactional implementation of MultiMap.
More...
#include <transactional_multi_map.h>
|
template<typename K , typename V > |
boost::future< bool > | put (const K &key, const V &value) |
| Transactional implementation of multi_map::put(key , value). More...
|
|
template<typename K , typename V > |
boost::future< std::vector< V > > | get (const K &key) |
| Transactional implementation of multi_map::get(key). More...
|
|
template<typename K , typename V > |
boost::future< bool > | remove (const K &key, const V &value) |
| Transactional implementation of multi_map::remove(key , value). More...
|
|
template<typename K , typename V > |
boost::future< std::vector< V > > | remove (const K &key) |
| Transactional implementation of multi_map::remove(key). More...
|
|
template<typename K > |
boost::future< int > | value_count (const K &key) |
| Transactional implementation of multi_map::value_count(key). More...
|
|
|
class | transaction_context |
|
Transactional implementation of MultiMap.
- See also
- MultiMap
◆ get()
template<typename K , typename V >
boost::future<std::vector<V> > hazelcast::client::transactional_multi_map::get |
( |
const K & |
key | ) |
|
|
inline |
Transactional implementation of multi_map::get(key).
- See also
- multi_map::get(key)
◆ put()
template<typename K , typename V >
boost::future<bool> hazelcast::client::transactional_multi_map::put |
( |
const K & |
key, |
|
|
const V & |
value |
|
) |
| |
|
inline |
Transactional implementation of multi_map::put(key , value).
- See also
- multi_map::put(key , value)
◆ remove() [1/2]
template<typename K , typename V >
boost::future<bool> hazelcast::client::transactional_multi_map::remove |
( |
const K & |
key, |
|
|
const V & |
value |
|
) |
| |
|
inline |
Transactional implementation of multi_map::remove(key , value).
- See also
- multi_map::remove(key , value)
◆ remove() [2/2]
template<typename K , typename V >
boost::future<std::vector<V> > hazelcast::client::transactional_multi_map::remove |
( |
const K & |
key | ) |
|
|
inline |
Transactional implementation of multi_map::remove(key).
- See also
- multi_map::remove(key)
◆ value_count()
template<typename K >
boost::future<int> hazelcast::client::transactional_multi_map::value_count |
( |
const K & |
key | ) |
|
|
inline |
Transactional implementation of multi_map::value_count(key).
- See also
- multi_map::value_count(key)
The documentation for this class was generated from the following file: