resolveOutputs method

void resolveOutputs(
  1. Struct outputs
)
inherited

Resolves all output properties from a monitor response payload.

Implementation

void resolveOutputs(Struct outputs) {
  _pendingResolvedOutputs = outputs;
  if (completionSources.isEmpty) {
    return;
  }

  for (final entry in completionSources.entries) {
    _resolveCompletionSource(entry.key, entry.value, outputs);
  }
}