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

org.apache.activemq.artemis.shaded.org.jgroups.stack.StateTransferInfo Maven / Gradle / Ivy

There is a newer version: 2.33.0
Show newest version

package org.apache.activemq.artemis.shaded.org.jgroups.stack;


import org.apache.activemq.artemis.shaded.org.jgroups.Address;


/**
 * Contains parameters for state transfer. Exchanged between channel and STATE_TRANSFER
 * layer. The state is retrieved from 'target'. If target is null, then the state will be retrieved from the oldest
 * member (usually the coordinator).
 * @author Bela Ban
 */
public class StateTransferInfo {
    public Address      target=null;
    public long         timeout=0;
    public byte[]       state=null;



    public StateTransferInfo() {
    }

    public StateTransferInfo(Address target) {
        this.target=target;
    }

     public StateTransferInfo(Address target, long timeout) {
        this.target=target;
        this.timeout=timeout;
    }

    public StateTransferInfo(Address target, long timeout, byte[] state) {
        this.target=target;
        this.timeout=timeout;
        this.state=state;
    }



    public StateTransferInfo copy() {
        return new StateTransferInfo(target, timeout, state);
    }


    public String toString() {
        StringBuilder ret=new StringBuilder();
        ret.append("target=" + target);
        if(state != null)
            ret.append(", state=" + state.length + " bytes");
        ret.append(", timeout=" + timeout);
        return ret.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy