Click or drag to resize

StreamRecordInput Constructor

Initializes a new instance of the StreamRecordInput class.

Namespace: Ookii.Jumbo.IO
Assembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public StreamRecordInput(
	Type recordReaderType,
	Stream stream,
	bool isMemoryBased,
	string sourceName,
	bool inputContainsRecordSizes,
	bool allowRecordReuse
)

Parameters

recordReaderType  Type
Type of the record reader. This must be a specialization of the BinaryRecordReaderT generic class.
stream  Stream
The stream.
isMemoryBased  Boolean
if set to , the input is read from memory and not from disk.
sourceName  String
Name of the source.
inputContainsRecordSizes  Boolean
if set to the input data contains record size markers.
allowRecordReuse  Boolean
if set to [allow record reuse].
See Also