Repository: ignite Updated Branches: refs/heads/master dbc3f873d -> fffba70a7
Javadoc enhancements - added @see Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/fffba70a Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/fffba70a Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/fffba70a Branch: refs/heads/master Commit: fffba70a79c2bf2e97df52f06e9a537556ce931d Parents: dbc3f87 Author: Yakov Zhdanov <[email protected]> Authored: Thu Jan 18 20:57:17 2018 +0300 Committer: Yakov Zhdanov <[email protected]> Committed: Thu Jan 18 20:57:17 2018 +0300 ---------------------------------------------------------------------- .../main/java/org/apache/ignite/cache/PartitionLossPolicy.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/fffba70a/modules/core/src/main/java/org/apache/ignite/cache/PartitionLossPolicy.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/cache/PartitionLossPolicy.java b/modules/core/src/main/java/org/apache/ignite/cache/PartitionLossPolicy.java index 16608a0..7c9b2a7 100644 --- a/modules/core/src/main/java/org/apache/ignite/cache/PartitionLossPolicy.java +++ b/modules/core/src/main/java/org/apache/ignite/cache/PartitionLossPolicy.java @@ -19,6 +19,7 @@ package org.apache.ignite.cache; import java.util.Collection; import org.apache.ignite.Ignite; +import org.apache.ignite.IgniteCache; import org.jetbrains.annotations.Nullable; /** @@ -31,6 +32,9 @@ import org.jetbrains.annotations.Nullable; * <p> * <code>READ_ONLY_*</code> and <code>READ_WRITE_*</code> policies do not automatically change partition state * and thus do not change rebalancing assignments for such partitions. + * + * @see Ignite#resetLostPartitions(Collection) + * @see IgniteCache#lostPartitions() */ public enum PartitionLossPolicy { /**
