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.String
getKey()
Gets the name of the data type.WriteThruOptions
getWriteThruOptions()
Gets the datasource Write Options.void
setWriteThruOptions(WriteThruOptions value)
Sets the datasource Write Options.
-
-
-
Method Detail
-
getKey
java.lang.String getKey() throws CacheException
Gets the name of the data type.- Returns:
- Name of the data type.
- Throws:
CacheException
-
getWriteThruOptions
WriteThruOptions getWriteThruOptions() throws CacheException
Gets the datasource Write Options.- Returns:
- Datasource Write Options.
- Throws:
CacheException
-
setWriteThruOptions
void setWriteThruOptions(WriteThruOptions value) throws CacheException
Sets the datasource Write Options.- Parameters:
value
- WriteThruoptions- Throws:
CacheException
-
-