Alachisoft.NCache.Common.Enum.RequestStatus 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.
package Alachisoft.NCache.Common.Enum;
public class RequestStatus {
public static final int NOT_RECEIVED = 1;
public static final int RECEIVED_AND_INEXECUTION = 2;
public static final int RECEIVED_AND_EXECUTED = 3;
public static final int RECEIVED_WITH_ERROR = 4;
public static final int NODE_DOWN = 5;
}