| /*========================================================================= |
| * 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 "CacheableVectorMN.hpp" |
| |
| |
| using namespace System; |
| using namespace System::Collections::Generic; |
| |
| namespace GemStone |
| { |
| namespace GemFire |
| { |
| namespace Cache { namespace Generic |
| { |
| /// <summary> |
| /// A mutable <c>IGFSerializable</c> vector wrapper that can serve as |
| /// a distributable object for caching. This class extends .NET generic |
| /// <c>List</c> class. |
| /// </summary> |
| ref class CacheableArrayList |
| : public CacheableVector |
| { |
| public: |
| /// <summary> |
| /// Allocates a new empty instance. |
| /// </summary> |
| inline CacheableArrayList(System::Collections::IList^ list) |
| : CacheableVector(list) |
| { } |
| |
| |
| /// <summary> |
| /// Static function to create a new empty instance. |
| /// </summary> |
| inline static CacheableArrayList^ Create() |
| { |
| return gcnew CacheableArrayList(gcnew System::Collections::Generic::List<Object^>()); |
| } |
| |
| /// <summary> |
| /// Static function to create a new empty instance. |
| /// </summary> |
| inline static CacheableArrayList^ Create(System::Collections::IList^ list) |
| { |
| return gcnew CacheableArrayList(list); |
| } |
| |
| |
| // Region: IGFSerializable Members |
| |
| /// <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 |
| { |
| virtual uint32_t get() override |
| { |
| return GemFireClassIds::CacheableArrayList; |
| } |
| } |
| |
| // End Region: IGFSerializable Members |
| |
| /// <summary> |
| /// Factory function to register this class. |
| /// </summary> |
| static IGFSerializable^ CreateDeserializable() |
| { |
| return gcnew CacheableArrayList(gcnew System::Collections::Generic::List<Object^>()); |
| } |
| }; |
| } |
| } |
| } |
| } //namespace |