|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DSWriteOption | |
---|---|
com.alachisoft.ncache.web.caching | Describes com.alachisoft.ncache.web.caching package The com.alachisoft.nCache.web.caching package provides classes for caching frequently used data in a cluster This includes the Cache class, a dictionary that allows you to store arbitrary data objects, such as hash tables and data sets. |
Uses of DSWriteOption in com.alachisoft.ncache.web.caching |
---|
Methods in com.alachisoft.ncache.web.caching that return DSWriteOption | |
---|---|
static DSWriteOption |
DSWriteOption.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DSWriteOption[] |
DSWriteOption.values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods in com.alachisoft.ncache.web.caching with parameters of type DSWriteOption | |
---|---|
CacheItemVersion |
Cache.add(java.lang.String key,
CacheItem item,
DSWriteOption dsWriteOption,
DataSourceItemsAddedCallback onDataSourceItemAdded)
Adds the specified item to the Cache, and a delegate you can use to notify your application when the item is added into cache. |
CacheItemVersion |
Cache.add(java.lang.String key,
CacheItem item,
DSWriteOption dsWriteOption,
java.lang.String providerName,
DataSourceItemsAddedCallback onDataSourceItemAdded)
Adds the specified item to the Cache, and a delegate you can use to notify your application when the item is added into cache. |
java.lang.Object |
Cache.addAsync(java.lang.String key,
CacheItem item,
DSWriteOption dsWriteOption,
DataSourceItemsAddedCallback onSourceItemAdded)
Adds a key and CacheItem in the cache Asynchronously. |
java.lang.Object |
Cache.addAsync(java.lang.String key,
CacheItem item,
DSWriteOption dsWriteOption,
java.lang.String providerName,
DataSourceItemsAddedCallback onSourceItemAdded)
Adds a key and CacheItem in the cache Asynchronously. |
java.util.HashMap |
Cache.addBulk(java.lang.String[] keys,
CacheItem[] items,
DSWriteOption dsWriteOption,
DataSourceItemsAddedCallback onDataSourceItemAddedCallback)
Add array of CacheItem to the cache. |
java.util.HashMap |
Cache.addBulk(java.lang.String[] keys,
CacheItem[] items,
DSWriteOption dsWriteOption,
java.lang.String providerName,
DataSourceItemsAddedCallback onDataSourceItemAddedCallback)
Add array of CacheItem to the cache. |
void |
Cache.clear(DSWriteOption dsWriteOption,
DataSourceClearedCallback onDataSourceCleared)
Removes all elements from the Cache. |
void |
Cache.clearAsync(DSWriteOption dsWriteOption,
AsyncCacheClearedCallback onAsyncCacheCleared,
DataSourceClearedCallback onDataSourceCleared)
Removes all elements from the Cache asynchronously. |
void |
Cache.delete(java.lang.String key,
DSWriteOption dsWriteOption,
DataSourceItemsRemovedCallback onDataSourceItemRemoved)
Removes the object from the Cache. |
void |
Cache.delete(java.lang.String key,
DSWriteOption dsWriteOption,
java.lang.String providerName,
DataSourceItemsRemovedCallback onDataSourceItemRemoved)
Removes the object from the Cache. |
void |
Cache.deleteBulk(java.lang.String[] keys,
DSWriteOption dsWriteOption,
DataSourceItemsRemovedCallback onDataSourceItemRemoved)
Removes the objects from the Cache. |
void |
Cache.deleteBulk(java.lang.String[] keys,
DSWriteOption dsWriteOption,
java.lang.String providerName,
DataSourceItemsRemovedCallback onDataSourceItemRemoved)
Removes the objects from the Cache. |
CacheItemVersion |
Cache.insert(java.lang.String key,
CacheItem item,
DSWriteOption dsWriteOption,
DataSourceItemsUpdatedCallback onDataSourceItemUpdated)
Add a CacheItem to the cache |
CacheItemVersion |
Cache.insert(java.lang.String key,
CacheItem item,
DSWriteOption dsWriteOption,
java.lang.String providerName,
DataSourceItemsUpdatedCallback onDataSourceItemUpdated)
Add a CacheItem to the cache |
void |
Cache.insertAsync(java.lang.String key,
CacheItem item,
DSWriteOption dsWriteOption,
DataSourceItemsUpdatedCallback onDataSourceItemUpdated)
Inserts a key and CacheItem in the cache. |
void |
Cache.insertAsync(java.lang.String key,
CacheItem item,
java.lang.String providerName,
DSWriteOption dsWriteOption,
DataSourceItemsUpdatedCallback onDataSourceItemUpdated)
Inserts a key and CacheItem in the cache. |
java.util.HashMap |
Cache.insertBulk(java.lang.String[] keys,
CacheItem[] items,
DSWriteOption dsWriteOption,
DataSourceItemsUpdatedCallback onDataSourceItemUpdated)
Insert list of CacheItem to the cache |
java.util.HashMap |
Cache.insertBulk(java.lang.String[] keys,
CacheItem[] items,
DSWriteOption dsWriteOption,
java.lang.String providerName,
DataSourceItemsUpdatedCallback onDataSourceItemUpdated)
Insert list of CacheItem to the cache |
java.lang.Object |
Cache.remove(java.lang.String key,
DSWriteOption dsWriteOption,
DataSourceItemsRemovedCallback onDataSourceItemRemoved)
Removes the object from the Cache. |
java.lang.Object |
Cache.remove(java.lang.String key,
DSWriteOption dsWriteOption,
java.lang.String providerName,
DataSourceItemsRemovedCallback onDataSourceItemRemoved)
Removes the object from the Cache. |
void |
Cache.removeAsync(java.lang.String key,
AsyncItemRemovedCallback asyncItemRemovedCallback,
DSWriteOption dsWriteOption,
DataSourceItemsRemovedCallback onDataSourceItemRemoved)
Removes the object from the Cache. |
void |
Cache.removeAsync(java.lang.String key,
AsyncItemRemovedCallback asyncItemRemovedCallback,
DSWriteOption dsWriteOption,
java.lang.String providerName,
DataSourceItemsRemovedCallback onDataSourceItemRemoved)
Removes the object from the Cache. |
java.util.HashMap |
Cache.removeBulk(java.lang.String[] keys,
DSWriteOption dsWriteOption,
DataSourceItemsRemovedCallback onDataSourceItemRemoved)
Removes the objects from the Cache. |
java.util.HashMap |
Cache.removeBulk(java.lang.String[] keys,
DSWriteOption dsWriteOption,
java.lang.String providerName,
DataSourceItemsRemovedCallback onDataSourceItemRemoved)
Removes the objects from the Cache. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |