16 #ifndef HAZELCAST_CLIENT_QUERY_INPREDICATE_H_
17 #define HAZELCAST_CLIENT_QUERY_INPREDICATE_H_
21 #include "hazelcast/client/query/Predicate.h"
22 #include "hazelcast/client/serialization/ObjectDataOutput.h"
23 #include "hazelcast/client/serialization/ObjectDataInput.h"
24 #include "hazelcast/client/exception/IException.h"
25 #include "hazelcast/client/query/impl/predicates/PredicateDataSerializerHook.h"
27 #if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64)
29 #pragma warning(disable: 4251) //for dll export
45 InPredicate(
const char *attributeName,
const std::vector<T> &values)
46 : attrName(attributeName), inValues(values) {
52 void add(
const T &value) {
53 inValues.push_back(value);
60 return impl::predicates::F_ID;
67 return impl::predicates::IN_PREDICATE;
76 int len = (int)inValues.size();
78 for (
int i = 0; i < len; ++i) {
90 "Client should not need to use readData method!!!");
95 std::vector<T> inValues;
101 #if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64)
int getClassId() const
Definition: InPredicate.h:66
void writeData(serialization::ObjectDataOutput &out) const
Defines how this class will be written.
Definition: InPredicate.h:74
Base class for all exception originated from Hazelcast methods.
Definition: IException.h:49
void writeObject(const Portable *object)
Definition: ObjectDataOutput.h:182
InPredicate(const char *attributeName, const std::vector< T > &values)
Definition: InPredicate.h:45
Provides serialization methods for primitive types,a arrays of primitive types, Portable, IdentifiedDataSerializable and custom serializables.
Definition: ObjectDataOutput.h:52
int getFactoryId() const
Definition: InPredicate.h:59
This is a merker class for Predicate classes.
Definition: Predicate.h:36
Type T should be a valid serializable and copiable type.
Definition: InPredicate.h:39
void writeUTF(const std::string *value)
Definition: ObjectDataOutput.cpp:95
void readData(serialization::ObjectDataInput &in)
Defines how this class will be read.
Definition: InPredicate.h:87
void add(const T &value)
Value to add to the searched values in the query.
Definition: InPredicate.h:52
void writeInt(int32_t value)
Definition: ObjectDataOutput.cpp:75