summaryrefslogtreecommitdiffstats
path: root/vdslib/src/main/java/com/yahoo/vdslib/distribution/ConfiguredNode.java
blob: 92cf8b025e9907ee4ed7c857c86ea943b1639d7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vdslib.distribution;

/**
 * A node configured to exist, with its configured node specific information.
 * This is immutable. The identity and natural order of a node is its index.
 *
 * @author bratseth
 */
public class ConfiguredNode implements Comparable<ConfiguredNode> {

    private final int index;

    private final boolean retired;

    public ConfiguredNode(int index, boolean retired) {
        this.index = index;
        this.retired = retired;
    }

    /** Return the index (distribution key) of this node */
    public int index() { return index; }

    /** Returns whether the node is configured to be retired */
    public boolean retired() { return retired; }

    @Override
    public int hashCode() { return index; }

    @Override
    public boolean equals(Object other) {
        if (other == this) return true;
        if ( ! (other instanceof ConfiguredNode)) return false;
        return ((ConfiguredNode)other).index == this.index;
    }

    @Override
    public int compareTo(ConfiguredNode other) {
        return Integer.compare(this.index, other.index);
    }

}