blob: 0e063e9cb71c3b2254e5e879dd6864c80551ce50 [file] [log] [blame]
#pragma once
#ifndef GEODE_GFCPP_CACHEABLEUNDEFINED_H_
#define GEODE_GFCPP_CACHEABLEUNDEFINED_H_
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "gfcpp_globals.hpp"
#include "gf_types.hpp"
#include "Cacheable.hpp"
/** @file
*/
namespace apache {
namespace geode {
namespace client {
/**
* Encapsulate an undefined query result.
*/
class CPPCACHE_EXPORT CacheableUndefined : public Cacheable {
public:
/**
*@brief serialize this object
**/
virtual void toData(DataOutput& output) const;
/**
*@brief deserialize this object
**/
virtual Serializable* fromData(DataInput& input);
/**
* @brief creation function for undefined query result
*/
inline static Serializable* createDeserializable() {
return new CacheableUndefined();
}
/**
*@brief Return the classId of the instance being serialized.
* This is used by deserialization to determine what instance
* type to create and deserialize into.
*/
virtual int32_t classId() const;
/**
*@brief return the typeId byte of the instance being serialized.
* This is used by deserialization to determine what instance
* type to create and deserialize into.
*/
virtual int8_t typeId() const;
/**
* @brief Return the data serialization fixed ID size type for internal use.
* @since GFE 5.7
*/
virtual int8_t DSFID() const;
/**
* Factory method for creating the default instance of CacheableUndefined.
*/
inline static CacheableUndefinedPtr create() {
return CacheableUndefinedPtr(new CacheableUndefined());
}
virtual uint32_t objectSize() const;
protected:
/** Constructor, used for deserialization. */
inline CacheableUndefined() {}
private:
// never implemented.
CacheableUndefined& operator=(const CacheableUndefined& other);
CacheableUndefined(const CacheableUndefined& other);
};
} // namespace client
} // namespace geode
} // namespace apache
#endif // GEODE_GFCPP_CACHEABLEUNDEFINED_H_