Alachisoft.NCache.Common.Messaging.MessageFailureReason Maven / Gradle / Ivy
package Alachisoft.NCache.Common.Messaging;
public enum MessageFailureReason
{
/**
Failed because it could not be delivered within expiration time.
*/
Expired,
/**
Failed because it got evicted before delivery.
*/
Evicted;
public int getValue()
{
return this.ordinal();
}
public static MessageFailureReason forValue(int value)
{
return values()[value];
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy