[This is preliminary documentation and is subject to change.]
Represents a logical timestamp in a timely dataflow computation. All messages in a
timely dataflow computation are labeled with a logical timestamp.
Namespace: Microsoft.Research.Naiad
Assembly: Microsoft.Research.Naiad (in Microsoft.Research.Naiad.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
C#
public interface Time<TTime> : IEquatable<TTime>, IComparable<TTime>
Type Parameters
- TTime
- The concrete type of the timestamp.
The TimeTTime type exposes the following members.
Methods
Name | Description | |
---|---|---|
GetHashCode |
Returns a hashcode for this time.
| |
InitializeFrom |
Returns a timestamp initialized from the given pointstamp.
| |
Join |
Computes the least upper bound of this and other, according to the
partial order defined on those times.
| |
LessThan |
Returns true if and only if this time is less than or equal to the other
time, according to the partial order defined on those times.
| |
Meet |
Computes the greatest lower bound of this and other, according to the
partial order defined on those times.
| |
Populate |
Populates a Pointstamp from a typed timestamp.
|
Properties
Name | Description | |
---|---|---|
Coordinates |
The number of integer coordinates in timestamps of this type.
|
Remarks
See Also