| /*========================================================================= |
| * 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 "ICacheableKeyN.hpp" |
| |
| #include "EntryEventMN.hpp" |
| |
| namespace GemStone |
| { |
| namespace GemFire |
| { |
| namespace Cache { |
| namespace Generic |
| { |
| interface class IGFSerializable; |
| |
| |
| /// <summary> |
| /// Implementers of interface <code>PartitionResolver</code> enable custom |
| /// partitioning on the <code>PartitionedRegion</code>. |
| /// </summary> |
| /// <remarks> |
| /// 1. The Key class or callback arg can implement PartitionResolver interface to |
| /// enable custom partitioning OR |
| /// 2. Configure your own PartitionResolver class in partition attributes (For |
| /// instance when the Key is a primitive type or String) Implement the |
| /// appropriate equals - For all implementations, you need to be sure to code the |
| /// class equals method so it properly verifies equality for the |
| /// PartitionResolver implementation. This might mean verifying that class names |
| /// are the same or that the returned routing objects are the same etc.. When you |
| /// initiate the partitioned region on multiple nodes, GemFire uses the equals |
| /// method to ensure you are using the same PartitionResolver implementation for |
| /// all of the nodes for the region. |
| /// GemFire uses the routing object's hashCode to determine where the data is |
| /// being managed. Say, for example, you want to colocate all Trades by month and |
| /// year.The key is implemented by TradeKey class which also implements the |
| /// PartitionResolver interface. |
| /// public class TradeKey implements PartitionResolver {<br> |
| ///     private String tradeID;<br> |
| ///     private Month month ;<br> |
| ///     private Year year ;<br> |
| /// |
| ///     public TradingKey(){ } <br> |
| ///     public TradingKey(Month month, Year year){<br> |
| ///         this.month = month;<br> |
| ///         this.year = year;<br> |
| ///     } <br> |
| ///     public Serializable getRoutingObject(EntryOperation key){<br> |
| ///         return this.month + this.year;<br> |
| ///     }<br> }<br> |
| /// |
| /// In the example above, all trade entries with the same month and year are |
| /// guaranteed to be colocated. |
| /// </remarks> |
| /// <seealso cref="AttributesFactory.SetPartitionResolver" /> |
| /// <seealso cref="RegionAttributes.PartitionResolver" /> |
| generic<class TKey, class TValue> |
| public interface class IPartitionResolver |
| { |
| public: |
| |
| /// <summary> |
| /// Returns the name of the PartitionResolver. |
| /// </summary> |
| /// <remarks> |
| /// <para> |
| /// This function does not throw any exception. |
| /// </para> |
| /// <returns> |
| /// the name of the PartitionResolver |
| /// </returns> |
| /// </remarks> |
| String^ GetName(); |
| |
| /// <summary> |
| /// return object associated with entry event which allows the Partitioned Region to store associated data together. |
| /// </summary> |
| /// <remarks> |
| /// throws RuntimeException - any exception thrown will terminate the operation and the exception will be passed to the |
| /// calling thread. |
| /// </remarks> |
| /// <param name="key"> |
| /// key the detail of the entry event. |
| /// </param> |
| |
| Object^ GetRoutingObject(EntryEvent<TKey, TValue>^ key) ; |
| }; |
| |
| } |
| } |
| } |
| } //namespace |