All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jgroups.protocols.raft.election.LeaderElected Maven / Gradle / Ivy

The newest version!
package org.jgroups.protocols.raft.election;

import org.jgroups.Address;
import org.jgroups.Header;
import org.jgroups.protocols.raft.RaftHeader;
import org.jgroups.util.Util;

import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
import java.util.function.Supplier;

import static org.jgroups.protocols.raft.election.BaseElection.LEADER_ELECTED;

/**
 * Sent by the freshly elected leader to all members (-self)
 * @author Bela Ban
 * @since  1.0.6
 */
public class LeaderElected extends RaftHeader {
    protected Address leader;

    public LeaderElected() {
    }

    public LeaderElected(Address leader) {this.leader=leader;}

    public Address leader()   {return leader;}
    public short getMagicId() {
        return LEADER_ELECTED;
    }

    public Supplier create() {
        return LeaderElected::new;
    }

    public int serializedSize() {
        return super.serializedSize() + Util.size(leader);
    }

    public void writeTo(DataOutput out) throws IOException {
        super.writeTo(out);
        Util.writeAddress(leader, out);
    }

    public void readFrom(DataInput in) throws IOException, ClassNotFoundException {
        super.readFrom(in);
        leader=Util.readAddress(in);
    }

    public String toString() {
        return super.toString() + ", leader=" + leader;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy