blob: 53da9a304f382c9f110d3888d29e49cc29b5813f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ignite.raft.client;
import java.io.Serializable;
import org.apache.ignite.internal.tostring.S;
import org.apache.ignite.network.ClusterNode;
/**
* A participant of a replication group.
*/
public final class Peer implements Serializable {
/**
* Network node.
*/
private final ClusterNode node;
/**
* Peer's local priority value, if node don't support priority election,
* this value is {@link ElectionPriority#DISABLED}.
*/
private final int priority;
/**
* @param peer Peer.
*/
public Peer(Peer peer) {
this.node = peer.getNode();
this.priority = peer.getPriority();
}
/**
* @param node Node.
*/
public Peer(ClusterNode node) {
this(node, ElectionPriority.DISABLED);
}
/**
* @param node Node.
* @param priority Election priority.
*/
public Peer(ClusterNode node, int priority) {
this.node = node;
this.priority = priority;
}
/**
* @return Node.
*/
public ClusterNode getNode() {
return this.node;
}
/**
* @return Election priority.
*/
public int getPriority() {
return priority;
}
/** {@inheritDoc} */
@Override public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Peer peer = (Peer) o;
if (priority != peer.priority) return false;
if (!node.equals(peer.node)) return false;
return true;
}
/** {@inheritDoc} */
@Override public int hashCode() {
int result = node.hashCode();
result = 31 * result + priority;
return result;
}
/** {@inheritDoc} */
@Override public String toString() {
return S.toString(Peer.class, this);
}
}