[This is preliminary documentation and is subject to change.]
Represents an output of a vertex, to which zero or more SendChannelTRecord, TTime (receivers)
can be added.
Namespace: Microsoft.Research.Naiad.Dataflow
Assembly: Microsoft.Research.Naiad (in Microsoft.Research.Naiad.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
C#
public interface VertexOutput<TRecord, TTime> where TTime : Object, Time<TTime>
Type Parameters
- TRecord
- The type of records produced by this output.
- TTime
- The type of timestamp on the records produced by this output.
The VertexOutputTRecord, TTime type exposes the following members.
Methods
Name | Description | |
---|---|---|
AddReceiver |
Adds the given receiver to those that will be informed of every messages sent on this output.
|
Properties
Name | Description | |
---|---|---|
Vertex |
The vertex hosting the output.
|
See Also