fix javadoc usage

This commit is contained in:
Tal Levy 2017-12-11 16:24:44 -08:00
parent 288515ddc5
commit c0c7e02de4
2 changed files with 2 additions and 4 deletions

View File

@ -222,8 +222,6 @@ public abstract class LifecyclePolicy extends AbstractDiffable<LifecyclePolicy>
* <p>
* Concrete {@link LifecyclePolicy} classes will implement this to help determine their specific
* ordering of actions for the phases they allow.
* <pre><code>
* </code></pre>
*/
@FunctionalInterface
interface NextActionProvider {

View File

@ -111,11 +111,11 @@ public class TimeseriesLifecyclePolicy extends LifecyclePolicy {
* on whether it increases, decreases, or keeps the existing replica count. If number-of-replicas is
* kept the same, or reduced, then {@link ReplicasAction} is executed first, otherwise, it is last.
* So the ordering looks something like this:
* - {@link ReplicasAction} (if action.number_of_replicas <= idxMeta.number_of_replicas)
* - {@link ReplicasAction} (if action.number_of_replicas lte idxMeta.number_of_replicas)
* - {@link AllocateAction}
* - {@link ShrinkAction}
* - {@link ForceMergeAction}
* - {@link ReplicasAction} (if action.number_of_replicas > idxMeta.number_of_replicas)
* - {@link ReplicasAction} (if action.number_of_replicas gt idxMeta.number_of_replicas)
*
* NOCOMMIT: there may exist further optimizations to this when {@link ShrinkAction} is specified.
*