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: 2.0.0
Syntax
public StreamRecordInput(
	Type recordReaderType,
	Stream stream,
	bool isMemoryBased,
	string sourceName,
	bool inputContainsRecordSizes,
	bool allowRecordReuse
)

Parameters

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