예제 #1
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="HealthPredictionObserverEventArgs" /> class.
 /// </summary>
 /// <param name="output">The output.</param>
 public HealthPredictionObserverEventArgs(HealthPredictionOutput output)
 {
     this.Output = output;
 }
예제 #2
0
 /// <summary>
 ///     Called when [on observed].
 /// </summary>
 /// <param name="observedResult">The observed result.</param>
 protected virtual void OnOnObserved(HealthPredictionOutput observedResult)
 {
     this.OnObserved?.Invoke(this, new HealthPredictionObserverEventArgs(observedResult));
 }