InterprocessCacheLoadFileData Method

Handles deserialization of file from disk; virtual method allows customization (e.g., pre-load decryption and/or data merge).

Definition

Namespace: Gemstone.IO
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
protected virtual byte[] LoadFileData(
	FileStream fileStream
)

Parameters

fileStream  FileStream
FileStream used to deserialize data.

Return Value

Byte
Deserialized file data.

Remarks

Consumers overriding this method should not directly call FileData property to avoid potential dead-locks.

See Also