|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SecurityException | |
---|---|
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 SecurityException in com.alachisoft.ncache.web.caching |
---|
Methods in com.alachisoft.ncache.web.caching that throw SecurityException | |
---|---|
CacheItemVersion |
Cache.add(java.lang.String key,
CacheItem item)
Add a CacheItem to the cache |
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. |
CacheItemVersion |
Cache.add(java.lang.String key,
java.lang.Object value)
Adds an item into the Cache object with a cache key to reference its location. |
CacheItemVersion |
Cache.add(java.lang.String key,
java.lang.Object value,
CacheDependency dependency,
java.util.Date absoluteExpiration,
TimeSpan slidingExpiration,
CacheItemPriority priority)
Adds the specified item to the Cache object with dependencies, expiration and priority policies, and a delegate you can use to notify your application when the inserted item is removed from the Cache. |
CacheItemVersion |
Cache.add(java.lang.String key,
java.lang.Object value,
NamedTagsDictionary namedTags)
Adds an item into the Cache object with a cache key to reference its location and using default values provided by the CacheItemPriority enumeration. |
CacheItemVersion |
Cache.add(java.lang.String key,
java.lang.Object value,
java.lang.String group,
java.lang.String subGroup)
Adds an item in the cache. |
CacheItemVersion |
Cache.add(java.lang.String key,
java.lang.Object value,
Tag[] tags)
Adds an item into the Cache object with a cache key to reference its location and using default values provided by the CacheItemPriority enumeration. |
java.lang.Object |
Cache.addAsync(java.lang.String key,
CacheItem item)
Adds a key and CacheItem in the cache Asynchronously. |
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.lang.Object |
Cache.addAsync(java.lang.String key,
java.lang.Object value,
AsyncItemAddedCallback onAsyncItemAddCallback,
java.lang.String group,
java.lang.String subGroup)
Add a key value pair to 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. |
boolean |
Cache.addDependency(java.lang.String key,
CacheDependency dep,
boolean isResyncRequired)
Add dependency to the cache item. |
boolean |
Cache.addDependency(java.lang.String key,
CacheSyncDependency dep)
Add CacheSyncDependency to the cache item. |
void |
Cache.clear()
Removes all elements from 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. |
boolean |
Cache.contains(java.lang.String key)
Determines whether the cache contains a specific key. |
void |
Cache.delete(java.lang.String key)
Removes the object from the Cache. |
void |
Cache.delete(java.lang.String key,
CacheItemVersion version)
Removes an item from cache if the specified version is still the most recent version in the cache. |
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.delete(java.lang.String key,
LockHandle lockHandle)
Removes an item from cache if it is not already locked or if the correct lock-id is specified. |
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. |
java.lang.Object |
Cache.get(java.lang.String key)
Retrieves the specified item from the Cache object. |
java.lang.Object |
Cache.get(java.lang.String key,
CacheItemVersion version)
Retrieves the specified item from the Cache object. |
java.lang.Object |
Cache.get(java.lang.String key,
DSReadOption dsReadOption)
Retrieves the specified item from the Cache object. |
java.lang.Object |
Cache.get(java.lang.String key,
DSReadOption dsReadOption,
CacheItemVersion version)
Retrieves the specified item from the Cache object. |
java.lang.Object |
Cache.get(java.lang.String key,
java.lang.String providerName,
DSReadOption dsReadOption)
Retrieves the specified item from the Cache object. |
java.lang.Object |
Cache.get(java.lang.String key,
java.lang.String providerName,
DSReadOption dsReadOption,
CacheItemVersion version)
Retrieves the specified item from the Cache object. |
java.lang.Object |
Cache.get(java.lang.String key,
java.lang.String group,
java.lang.String subGroup,
DSReadOption dsReadOption)
Retrieves the specified item from the Cache object. |
java.lang.Object |
Cache.get(java.lang.String key,
TimeSpan lockTimeout,
LockHandle lockHandle,
boolean acquireLock)
Retrieves the specified item from the Cache object if it is not already locked. |
java.util.HashMap |
Cache.getBulk(java.lang.String[] keys,
DSReadOption dsReadOption)
Retrieves the object from the cache for the given keys as key value pairs |
java.util.HashMap |
Cache.getBulk(java.lang.String[] keys,
java.lang.String provideName,
DSReadOption dsReadOption)
Retrieves the object from the cache for the given keys as key value pairs |
java.util.HashMap |
Cache.getByAllTags(Tag[] tags)
Returns the cached objects that have all the same tags in common. |
java.util.HashMap |
Cache.getByAnyTag(Tag[] tags)
Returns the cached objects that have any of the same tags in common. |
java.util.HashMap |
Cache.getByTag(Tag tag)
Gets all the cached objects with the specified tag. |
CacheItem |
Cache.getCacheItem(java.lang.String key)
Get the cache item stored in cache. |
CacheItem |
Cache.getCacheItem(java.lang.String key,
CacheItemVersion version)
Retrieves the specified item from the Cache object. |
CacheItem |
Cache.getCacheItem(java.lang.String key,
DSReadOption dsReadOption)
Retrieves the specified item from the Cache object. |
CacheItem |
Cache.getCacheItem(java.lang.String key,
DSReadOption dsReadOption,
CacheItemVersion version)
|
CacheItem |
Cache.getCacheItem(java.lang.String key,
java.lang.String providerName,
DSReadOption dsReadOption)
Retrieves the specified item from the Cache object. |
CacheItem |
Cache.getCacheItem(java.lang.String key,
java.lang.String providerName,
DSReadOption dsReadOption,
CacheItemVersion version)
Retrieves the specified item from the Cache object. |
CacheItem |
Cache.getCacheItem(java.lang.String key,
java.lang.String group,
java.lang.String subGroup)
Get the cache item stored in cache. |
CacheItem |
Cache.getCacheItem(java.lang.String key,
java.lang.String group,
java.lang.String subGroup,
DSReadOption dsReadOption)
Retrieves the specified item from the Cache object. |
CacheItem |
Cache.getCacheItem(java.lang.String key,
TimeSpan lockTimeout,
LockHandle lockHandle,
boolean acquireLock)
Get the cache item stored in cache. |
long |
Cache.getCount()
Returns the cache count. |
java.util.HashMap |
Cache.getGroupData(java.lang.String group,
java.lang.String subGroup)
Retrieves the key and value pairs in a group or sub group. |
java.util.Collection |
Cache.getGroupKeys(java.lang.String group,
java.lang.String subGroup)
Retrieves the key and value pairs in a group or sub group. |
java.lang.Object |
Cache.getIfNewer(java.lang.String key,
CacheItemVersion version)
Gets an object from the cache only if a newer version of the object exists in cache. |
java.lang.Object |
Cache.getIfNewer(java.lang.String key,
java.lang.String group,
java.lang.String subGroup,
CacheItemVersion version)
Gets an object from the cache only if a newer version of the object exists in cache. |
java.util.Collection |
Cache.getKeysByAllTags(Tag[] tags)
Returns the cached objects that have all the same tags in common. |
java.util.Collection |
Cache.getKeysByAnyTag(Tag[] tags)
Returns the cached objects that have any of the same tags in common. |
java.util.Collection |
Cache.getKeysByTag(Tag tag)
Gets all the cached objects with the specified tag. |
CacheItemVersion |
Cache.insert(java.lang.String key,
CacheItem item)
Add a CacheItem to 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 |
CacheItemVersion |
Cache.insert(java.lang.String key,
CacheItem item,
LockHandle lockHandle,
boolean releaseLock)
|
CacheItemVersion |
Cache.insert(java.lang.String key,
java.lang.Object value)
Inserts an item into the Cache object with a cache key to reference its location and using default values provided by the CacheItemPriority enumeration. |
CacheItemVersion |
Cache.insert(java.lang.String key,
java.lang.Object value,
CacheDependency dependency,
java.util.Date absoluteExpiration,
TimeSpan slidingExpiration,
CacheItemPriority priority)
Inserts an object into the Cache with dependencies and expiration policies. |
CacheItemVersion |
Cache.insert(java.lang.String key,
java.lang.Object value,
NamedTagsDictionary namedTags)
Inserts an item into the Cache with a cache key to reference its location and using default values provided by the CacheItemPriority enumeration. |
CacheItemVersion |
Cache.insert(java.lang.String key,
java.lang.Object value,
java.lang.String group,
java.lang.String subGroup)
Inserts an Object into the Cache. |
CacheItemVersion |
Cache.insert(java.lang.String key,
java.lang.Object value,
Tag[] tags)
Inserts an item into the Cache with a cache key to reference its location and using default values provided by the CacheItemPriority enumeration. |
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. |
void |
Cache.insertAsync(java.lang.String key,
java.lang.Object value,
AsyncItemUpdatedCallback asyncItemUpdatedCallback,
java.lang.String group,
java.lang.String subGroup)
Insert a CacheItem to the cache asynchoronously |
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 |
boolean |
Cache.lock(java.lang.String key,
TimeSpan lockTimeout,
LockHandle lockHandle)
Acquire a lock on an item in cache. |
void |
Cache.raiseCustomEvent(java.lang.Object key,
java.lang.Object value)
Raises a custom event. |
void |
Cache.registerAddNotification()
Registers the Add operation notification with the server. |
void |
Cache.registerCacheStoppedNotification()
Register the cache stopped event with the server. |
void |
Cache.registerClearNotification()
Registers the Clear operation notification with the server. |
void |
Cache.registerCQ(ContinuousQuery query)
Registers the notifications based on the specified ContinuousQuery. |
void |
Cache.registerCustomNotification()
Registers the Clear operation notification with the server. |
void |
Cache.registerInsertNotification()
Registers the Insert operation notification with the server. |
void |
Cache.registerKeyNotificationCallback(java.lang.String[] keys,
CacheItemUpdatedCallback updateCallback,
CacheItemRemovedCallback removeCallback)
Registers the CacheItemUpdatedCallback and/or CacheItemRemovedCallback for the list of specified keys. |
void |
Cache.registerKeyNotificationCallback(java.lang.String key,
CacheItemUpdatedCallback updateCallback,
CacheItemRemovedCallback removeCallback)
Registers the CacheItemUpdatedCallback and/or CacheItemRemovedCallback for the specified key. |
void |
Cache.registerMemberJoinedNotification()
Registers the Member Joined notification with the server. |
void |
Cache.registerMemberLeftNotification()
Registers the Member Left notification with the server. |
void |
Cache.registerRemoveNotification()
Registers the Remove operation notification with the server. |
java.lang.Object |
Cache.remove(java.lang.String key)
Removes the object from the Cache. |
java.lang.Object |
Cache.remove(java.lang.String key,
CacheItemVersion version)
Removes an item from cache if the specified version is still the most recent version in 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. |
java.lang.Object |
Cache.remove(java.lang.String key,
LockHandle lockHandle)
Removes an item from cache if it is not already locked or if the correct lock-id is specified. |
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. |
void |
Cache.removeByAllTags(Tag[] tags)
Removes the cached objects that have all of the same tags in common. |
void |
Cache.removeByAnyTag(Tag[] tags)
Removes the cached objects that have any of the same tags in common. |
void |
Cache.removeByTag(Tag tag)
Removes the cached objects that have the specified tag. |
void |
Cache.removeGroupData(java.lang.String group,
java.lang.String subGroup)
Remove the group from cache. |
java.util.Collection |
Cache.search(java.lang.String query,
java.util.HashMap values)
Retrieves the keys for the specified query. |
java.util.Collection |
Cache.searchCQ(ContinuousQuery query)
Performs search on the Cache based on the specified ContinuousQuery and registers the notifications. |
java.util.HashMap |
Cache.searchEntries(java.lang.String query,
java.util.HashMap values)
Retrieves the key and value pairs for the specified query. |
java.util.HashMap |
Cache.searchEntriesCQ(ContinuousQuery query)
Performs search on the Cache based on the specified ContinuousQuery and registers the notifications. |
void |
Cache.unlock(java.lang.String key)
Forcefully unlocks a locked cached item. |
void |
Cache.unlock(java.lang.String key,
java.lang.String lockId)
Unlocks a locked cached item if the correct lock-id is specified. |
void |
Cache.unRegisterAddNotification()
Unregisters the Add operation notification with the server. |
void |
Cache.unRegisterCacheStoppedNotification()
Unregisters the cache stopped even notification with the server. |
void |
Cache.unRegisterClearNotification()
Unregisters the Clear operation notification with the server. |
void |
Cache.unRegisterCQ(ContinuousQuery query)
Unregisters notifications for the specified ContinuousQuery. |
void |
Cache.unRegisterCustomNotification()
Registers the Clear operation notification with the server. |
void |
Cache.unRegisterInsertNotification()
Unregisters the Insert operation notification with the server. |
void |
Cache.unRegisterKeyNotificationCallback(java.lang.String[] keys,
CacheItemUpdatedCallback updateCallback,
CacheItemRemovedCallback removeCallback)
Unregisters the CacheItemUpdatedCallback and/or CacheItemRemovedCallback already registered
for the specified list of keys. |
void |
Cache.unRegisterKeyNotificationCallback(java.lang.String key,
CacheItemUpdatedCallback updateCallback,
CacheItemRemovedCallback removeCallback)
Unregisters the CacheItemUpdatedCallback and/or CacheItemRemovedCallback already registered for the specified key. |
void |
Cache.unRegisterMemberLeftNotification()
Unregisters the Memeber Left Event notification with the server. |
void |
Cache.unRegisterMemeberJoinedNotification()
Unregisters the Member Joined Event notification with the server. |
void |
Cache.unRegisterRemoveNotification()
Unregisters the Remove operation notification with the server. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |