IPersistenceManagerTKey, TValueWrite Method |
Writes a key, value pair of region to the disk. The actual file or database related write operations should be implemented
in this method by the class implementing this method.
Namespace: GemStone.GemFire.Cache.GenericAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxvoid Write(
TKey key,
TValue value
)
Sub Write (
key As TKey,
value As TValue
)
void Write(
TKey key,
TValue value
)
abstract Write :
key : 'TKey *
value : 'TValue -> unit
Parameters
- key
- Type: TKey
the key to write.
- value
- Type: TValue
the value to write.
See Also