|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ArgumentException | |
---|---|
com.alachisoft.ncache.runtime.dependencies | |
com.alachisoft.ncache.runtime.exceptions | |
com.alachisoft.ncache.runtime.util | |
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 ArgumentException in com.alachisoft.ncache.runtime.dependencies |
---|
Methods in com.alachisoft.ncache.runtime.dependencies that throw ArgumentException | |
---|---|
void |
AggregateCacheDependency.add(CacheDependency[] dependencies)
Adds an array of CacheDependency objects to the AggregateCacheDependency object. |
static CmdParamsDbType |
CmdParamsDbType.getCmdParamsDbType(int value)
|
static CmdParamsType |
CmdParamsType.getCmdParamsType(int value)
|
static OracleCmdParamsType |
OracleCmdParamsType.getOracleCmdParamsType(int value)
|
static OracleCommandType |
OracleCommandType.getOracleCommandType(int value)
|
static OracleParameterDirection |
OracleParameterDirection.getOracleParameterDirection(int value)
|
static SqlCmpOptions |
SqlCmpOptions.getSqlCmpOptions(int value)
|
static SqlCommandType |
SqlCommandType.getSqlCommandType(int value)
|
static SqlDataRowVersion |
SqlDataRowVersion.getSqlDataRowVersion(int value)
|
static SqlParamDirection |
SqlParamDirection.getSqlParamDirection(int value)
|
Constructors in com.alachisoft.ncache.runtime.dependencies that throw ArgumentException | |
---|---|
CacheDependency(java.lang.String fileName)
Initializes a new instance of the CacheDependency class that monitors a file or directory for changes. |
|
CacheDependency(java.lang.String[] fileNames)
Initializes a new instance of the CacheDependency class that monitors an array of file paths (to files or directories) for changes and specifies a time when change monitoring begins. |
|
CacheDependency(java.lang.String[] fileNames,
java.util.Date start)
Initializes a new instance of the CacheDependency class that monitors an array of file paths (to files or directories) for changes and specifies a time when change monitoring begins. |
|
CacheDependency(java.lang.String[] fileNames,
java.lang.String[] cacheKeys)
Initializes a new instance of the CacheDependency class that monitors an array of file paths (to files or directories), an array of cache keys, or both for changes. |
|
CacheDependency(java.lang.String[] fileNames,
java.lang.String[] cacheKeys,
CacheDependency dependency)
Initializes a new instance of the CacheDependency class that monitors an array of file paths (to files or directories),
an array of cache keys, or both for changes. |
|
CacheDependency(java.lang.String[] fileNames,
java.lang.String[] cacheKeys,
CacheDependency dependency,
java.util.Date start)
Initializes a new instance of the CacheDependency class that monitors an array of file paths (to files or directories),
an array of cache keys, or both for changes. |
|
CacheDependency(java.lang.String[] fileNames,
java.lang.String[] cacheKeys,
java.util.Date start)
Initializes a new instance of the CacheDependency class that monitors an array of file paths (to files or directories) for changes and specifies a time when change monitoring begins. |
|
CacheDependency(java.lang.String fileName,
java.util.Date start)
Initializes a new instance of the CacheDependency class
that monitors a file or directory for changes and indicates when change
tracking is to begin. |
Uses of ArgumentException in com.alachisoft.ncache.runtime.exceptions |
---|
Subclasses of ArgumentException in com.alachisoft.ncache.runtime.exceptions | |
---|---|
class |
ArgumentNullException
|
Uses of ArgumentException in com.alachisoft.ncache.runtime.util |
---|
Constructors in com.alachisoft.ncache.runtime.util that throw ArgumentException | |
---|---|
NCDateTime(int year,
int month,
int day,
int hours,
int minutes,
int seconds,
int milliseconds)
Creates .Net compatible Ticks. |
Uses of ArgumentException in com.alachisoft.ncache.web.caching |
---|
Methods in com.alachisoft.ncache.web.caching that throw ArgumentException | |
---|---|
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. |
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 |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |