com.alachisoft.ncache.client.EventHandle 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;
public class EventHandle {
private int _handle;
public EventHandle(short handle) {
this._handle = handle;
}
public final int getHandle() {
return _handle;
}
}