| /*========================================================================= |
| * Copyright (c) 2002-2014 Pivotal Software, Inc. All Rights Reserved. |
| * This product is protected by U.S. and international copyright |
| * and intellectual property laws. Pivotal products are covered by |
| * more patents listed at http://www.pivotal.io/patents. |
| *========================================================================= |
| */ |
| |
| #pragma once |
| |
| #include "gf_defs.hpp" |
| #include "IGFSerializable.hpp" |
| #include "GemFireClassIdsM.hpp" |
| |
| using namespace System; |
| |
| namespace GemStone |
| { |
| namespace GemFire |
| { |
| namespace Cache |
| { |
| /// <summary> |
| /// Encapsulate an undefined result. |
| /// </summary> |
| [Obsolete("Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")] |
| public ref class CacheableUndefined |
| : public IGFSerializable |
| { |
| public: |
| /// <summary> |
| /// Allocates a new empty instance. |
| /// </summary> |
| inline CacheableUndefined() { } |
| |
| /// <summary> |
| /// Static function to create a new empty instance. |
| /// </summary> |
| inline static CacheableUndefined^ Create() |
| { |
| return gcnew CacheableUndefined(); |
| } |
| |
| // Region: IGFSerializable Members |
| |
| /// <summary> |
| /// Serializes this object. |
| /// </summary> |
| /// <param name="output"> |
| /// the DataOutput object to use for serializing the object |
| /// </param> |
| virtual void ToData(DataOutput^ output); |
| |
| /// <summary> |
| /// Deserialize this object, typical implementation should return |
| /// the 'this' pointer. |
| /// </summary> |
| /// <param name="input"> |
| /// the DataInput stream to use for reading the object data |
| /// </param> |
| /// <returns>the deserialized object</returns> |
| virtual IGFSerializable^ FromData(DataInput^ input); |
| |
| /// <summary> |
| /// return the size of this object in bytes |
| /// </summary> |
| virtual property uint32_t ObjectSize |
| { |
| virtual uint32_t get(); |
| } |
| |
| /// <summary> |
| /// Returns the classId of the instance being serialized. |
| /// This is used by deserialization to determine what instance |
| /// type to create and deserialize into. |
| /// </summary> |
| /// <returns>the classId</returns> |
| virtual property uint32_t ClassId |
| { |
| inline virtual uint32_t get() |
| { |
| return GemFireClassIds::CacheableUndefined; |
| } |
| } |
| |
| // End Region: IGFSerializable Members |
| |
| /// <summary> |
| /// Factory function to register this class. |
| /// </summary> |
| static IGFSerializable^ CreateDeserializable() |
| { |
| return gcnew CacheableUndefined(); |
| } |
| }; |
| } |
| } |
| } |