 | StreamRecordInput Constructor |
Namespace: Ookii.Jumbo.IOAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic StreamRecordInput(
Type recordReaderType,
Stream stream,
bool isMemoryBased,
string sourceName,
bool inputContainsRecordSizes,
bool allowRecordReuse
)
Public Sub New (
recordReaderType As Type,
stream As Stream,
isMemoryBased As Boolean,
sourceName As String,
inputContainsRecordSizes As Boolean,
allowRecordReuse As Boolean
)
public:
StreamRecordInput(
Type^ recordReaderType,
Stream^ stream,
bool isMemoryBased,
String^ sourceName,
bool inputContainsRecordSizes,
bool allowRecordReuse
)
new :
recordReaderType : Type *
stream : Stream *
isMemoryBased : bool *
sourceName : string *
inputContainsRecordSizes : bool *
allowRecordReuse : bool -> StreamRecordInput
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