Beispiel #1
0
 public override bool Equals(ComputedInput other)
 => other is ReplicaInput ri && PublicationRef == ri.PublicationRef;
Beispiel #2
0
 Task IFunction.InvokeAndStrip(ComputedInput input,
                               IComputed?usedBy,
                               ComputeContext?context,
                               CancellationToken cancellationToken)
 => InvokeAndStrip((TIn)input, usedBy, context, cancellationToken);
Beispiel #3
0
 public override bool Equals(ComputedInput obj)
 => obj is InterceptedInput other && Equals(other);
Beispiel #4
0
 async Task <IComputed> IFunction.Invoke(ComputedInput input,
                                         IComputed?usedBy,
                                         ComputeContext?context,
                                         CancellationToken cancellationToken)
 => await Invoke((TIn)input, usedBy, context, cancellationToken).ConfigureAwait(false);