aboutsummaryrefslogtreecommitdiffstats
path: root/hosted-zone-api/src/main/java/ai/vespa/cloud/Node.java
blob: 06c62957520c0b3e588ee3120be5262efceefcd6 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.cloud;

import java.util.Objects;

/**
 * A node that is part of a cluster of e.g. Jdisc containers.
 *
 * @author gjoranv
 */
public class Node {

    private final int index;

    public Node(int index) {
        this.index = index;
    }

    /**
     * Returns the unique index of this node in the cluster.
     * Indices are non-negative, but not necessarily contiguous or starting from zero.
     */
    public int index() { return index; }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Node node = (Node) o;
        return index == node.index;
    }

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