[This is preliminary documentation and is subject to change.]
Represents the type of payload in a serialized message.
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 enum SerializedMessageType
Members
| Member name | Value | Description | |
|---|---|---|---|
| Data | 1 | The message contains data or progress information. | |
| Shutdown | 2 | The message indicates successful termination of the sending process. | |
| Checkpoint | 3 | The message indicates that the sending process is initiating a checkpoint. | |
| CheckpointData | 4 | The message contains data the is being written as part of a checkpoint. | |
| Startup | 5 | The message indicates that a new computation is starting up. | |
| Failure | 6 | The message indicates that a computation has failed. | |
| Ack | 7 | The message indicates the range of sequence numbers that have been received by the sender. |
See Also