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
InvocationIdlongId of the invocation.
OriginalTimestampTimestampTimestamp at which this invocation should have happened.
InvocationTimestampTimestampTimestamp 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; }