[This is preliminary documentation and is subject to change.]
Returns an record observer that writes records to the given stream in the Naiad message format.
Namespace: Microsoft.Research.Naiad.Frameworks.Storage
Assembly: Microsoft.Research.Naiad.Storage (in Microsoft.Research.Naiad.Storage.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
C#
public static IObserver<TRecord> GetNaiadWriterObserver<TRecord>( Stream stream, SerializationFormat codeGenerator )
Parameters
- stream
- Type: System.IOStream
Target I/O stream - codeGenerator
- Type: Microsoft.Research.Naiad.SerializationSerializationFormat
code generator
Type Parameters
- TRecord
- Type of records to be written
Return Value
Type: IObserverTRecordA record observer that writes records to the given stream.
See Also