[This is preliminary documentation and is subject to change.]
Constructs a new NaiadWriter that writes to the given stream and uses the given serialization format.
Namespace: Microsoft.Research.Naiad.Serialization
Assembly: Microsoft.Research.Naiad (in Microsoft.Research.Naiad.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
C#
public NaiadWriter( Stream stream, SerializationFormat serializationFormat, int blockSize = 16384 )
Parameters
- stream
- Type: System.IOStream
The stream to which data will be written. - serializationFormat
- Type: Microsoft.Research.Naiad.SerializationSerializationFormat
The serialization format to use. - blockSize (Optional)
- Type: SystemInt32
The block size to use: the serializer buffers up to this block size.
See Also