com.alachisoft.ncache.client.EventCacheItemWrapperInternal 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;
import Alachisoft.NCache.Common.BitSet;
public class EventCacheItemWrapperInternal {
public static EventCacheItem createEventCacheItem()
{
return new EventCacheItem();
}
public static void setValue(EventCacheItem eventCacheItem,Object value)
{
eventCacheItem.setValue(value);
}
public static void setFlagMap(EventCacheItem item, BitSet flagMap) {
item.setFlagmap(flagMap);
}
public static BitSet getFlagMap(EventCacheItem item) {
return item.getFlagmap();
}
}