[This is preliminary documentation and is subject to change.]
Vertex with one input, one output, which accumulates inputs and schedules itself for each time seen.
Inheritance Hierarchy
Microsoft.Research.Naiad.DataflowVertex
Microsoft.Research.Naiad.DataflowVertexTTime
Microsoft.Research.Naiad.Dataflow.StandardVerticesUnaryVertexTInput, TOutput, TTime
Microsoft.Research.Naiad.Dataflow.StandardVerticesUnaryBufferingVertexTInput, TOutput, TTime
Namespace: Microsoft.Research.Naiad.Dataflow.StandardVertices
Assembly: Microsoft.Research.Naiad (in Microsoft.Research.Naiad.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
C#
public class UnaryBufferingVertex<TInput, TOutput, TTime> : UnaryVertex<TInput, TOutput, TTime> where TTime : Object, Time<TTime>
Type Parameters
- TInput
- Source record type
- TOutput
- Result record type
- TTime
- Time type
The UnaryBufferingVertexTInput, TOutput, TTime type exposes the following members.
Constructors
Name | Description | |
---|---|---|
UnaryBufferingVertexTInput, TOutput, TTime |
Constructs a new UnaryBufferingVertex.
|
Methods
Name | Description | |
---|---|---|
OnNotify |
Indicates that all messages bearing the given time (or earlier) have been delivered.
(Overrides VertexTTimeOnNotify(TTime).) | |
OnReceive |
Called when a message is received.
(Overrides UnaryVertexTInput, TOutput, TTimeOnReceive(MessageTInput, TTime).) |
Fields
Name | Description | |
---|---|---|
Input |
Input buffer
| |
Output |
Manages the list of intended recipients, and the buffering and sending of output.
(Inherited from UnaryVertexTInput, TOutput, TTime.) |
See Also