Interface DistributedDataStructure
-
- All Superinterfaces:
Lockable
- All Known Subinterfaces:
Counter,DistributedHashSet<T>,DistributedList<T>,DistributedMap<K,V>,DistributedQueue<T>
public interface DistributedDataStructure extends Lockable
This interface contains methods and parameters required for distributed data structures.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetKey()Gets the name of the data type.WriteThruOptionsgetWriteThruOptions()Gets the datasource WriteThruOptions.voidsetWriteThruOptions(WriteThruOptions value)Sets the datasource WriteThruOptions.
-
-
-
Method Detail
-
getKey
java.lang.String getKey() throws CacheExceptionGets the name of the data type.- Returns:
- Name of the data type.
- Throws:
CacheException
-
getWriteThruOptions
WriteThruOptions getWriteThruOptions() throws CacheException
Gets the datasource WriteThruOptions.- Returns:
- Datasource WriteThruOptions.
- Throws:
CacheException
-
setWriteThruOptions
void setWriteThruOptions(WriteThruOptions value) throws CacheException
Sets the datasource WriteThruOptions.- Parameters:
value- WriteThruoptions.- Throws:
CacheException
-
-