Alachisoft.NCache.Common.DataStructures.ReplicatedStateTransferStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-common Show documentation
Show all versions of nc-common Show documentation
Internal package of Alachisoft.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Alachisoft.NCache.Common.DataStructures;
/**
* @author saman_saif
*/
public class ReplicatedStateTransferStatus {
/**
* State transfer is in progress.
*/
public static final int UNDER_STATE_TRANSFER = 1;
/**
* State transfer has completed.
*/
public static final int STATE_TRANSFER_COMPLETED = 2;
}