setAsyncValue method

void setAsyncValue(
  1. int exeID,
  2. AsyncValue<T> value
)

Implementation

void setAsyncValue(int exeID, AsyncValue<T> value) {
  // If the execution ID is not the same as the current one,
  // then this is an old execution and we should ignore it
  if (exeID != _executionID) return;

  super.forceSetValue(value);
}