Hazelcast C++ Client
Hazelcast C++ Client Library
hazelcast::client::query::equal_predicate Class Reference
+ Inheritance diagram for hazelcast::client::query::equal_predicate:

Public Member Functions

template<typename T >
 equal_predicate (hazelcast_client &client, const std::string &attribute_name, const T &value)
 
- Public Member Functions inherited from hazelcast::client::query::base_predicate
 base_predicate (hazelcast_client &client)
 

Additional Inherited Members

- Public Attributes inherited from hazelcast::client::query::base_predicate
serialization::object_data_output out_stream
 
- Protected Member Functions inherited from hazelcast::client::query::named_predicate
 named_predicate (hazelcast_client &client, const std::string &attribute_name)
 

Detailed Description

Definition at line 105 of file predicates.h.

Constructor & Destructor Documentation

◆ equal_predicate()

template<typename T >
hazelcast::client::query::equal_predicate::equal_predicate ( hazelcast_client client,
const std::string &  attribute_name,
const T &  value 
)
inline
Parameters
attributeNameThe attribute whose value shall be compared to.
Template Parameters
fromThe value of the attribute.

Definition at line 112 of file predicates.h.

113  : named_predicate(client, attribute_name) {
114  out_stream.write_object(value);
115  }

The documentation for this class was generated from the following file: