com.alachisoft.ncache.client.internal.communication.WriteResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ncache-professional-client Show documentation
Show all versions of ncache-professional-client Show documentation
NCache Professional client for java.
package com.alachisoft.ncache.client.internal.communication;
enum WriteResult {
QueueEmptyAfterWrite,
NothingToDo,
MoreWork,
CompetingWriter,
NoConnection;
public static WriteResult forValue(int value) {
return values()[value];
}
public int getValue() {
return this.ordinal();
}
}