Struct ReactiveTaskInvocationParams
Represents parameters of reactive task invocation.
public readonly record struct ReactiveTaskInvocationParams : IEquatable<ReactiveTaskInvocationParams>
- Implements
- Inherited Members
Constructors
ReactiveTaskInvocationParams(long, Timestamp, Timestamp)
Represents parameters of reactive task invocation.
public ReactiveTaskInvocationParams(long InvocationId, Timestamp OriginalTimestamp, Timestamp InvocationTimestamp)
Parameters
InvocationId
longId of the invocation.
OriginalTimestamp
TimestampTimestamp at which this invocation should have happened.
InvocationTimestamp
TimestampTimestamp at which this invocation happened.
Properties
InvocationId
Id of the invocation.
public long InvocationId { get; init; }
Property Value
InvocationTimestamp
Timestamp at which this invocation happened.
public Timestamp InvocationTimestamp { get; init; }
Property Value
OriginalTimestamp
Timestamp at which this invocation should have happened.
public Timestamp OriginalTimestamp { get; init; }