setAsyncValue method
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);
}