|
template<typename... Args> |
| in_predicate (hazelcast_client &client, const std::string &attribute_name, const Args &... values) |
| The type of Args should be able to be serialized. More...
|
|
template<typename T > |
| in_predicate (hazelcast_client &client, const std::string &attribute_name, const std::vector< T > &values) |
| The type of Args should be able to be serialized. More...
|
|
template<typename... Args> |
| multi_predicate (hazelcast_client &client, const Args &... values) |
|
template<typename... Args> |
| multi_predicate (const std::string attribute_name, hazelcast_client &client, const Args &... values) |
|
template<typename T > |
| multi_predicate (const std::string attribute_name, hazelcast_client &client, const std::vector< T > &values) |
|
| base_predicate (hazelcast_client &client) |
|
Definition at line 282 of file predicates.h.
◆ in_predicate() [1/2]
template<typename... Args>
hazelcast::client::query::in_predicate::in_predicate |
( |
hazelcast_client & |
client, |
|
|
const std::string & |
attribute_name, |
|
|
const Args &... |
values |
|
) |
| |
|
inline |
The type of Args should be able to be serialized.
- Parameters
-
attributeName | The attribute whose value shall be compared to. |
- Template Parameters
-
value | The values to search for |
Definition at line 291 of file predicates.h.
294 : multi_predicate(attribute_name, client, values...)
◆ in_predicate() [2/2]
template<typename T >
hazelcast::client::query::in_predicate::in_predicate |
( |
hazelcast_client & |
client, |
|
|
const std::string & |
attribute_name, |
|
|
const std::vector< T > & |
values |
|
) |
| |
|
inline |
The type of Args should be able to be serialized.
- Parameters
-
attributeName | The attribute whose value shall be compared to. |
- Template Parameters
-
value | The values to search for |
Definition at line 303 of file predicates.h.
306 : multi_predicate(attribute_name, client, values)
The documentation for this class was generated from the following file: