stream method

  1. @override
Stream<RunOutput> stream(
  1. RunInput input, {
  2. CallOptions? options,
})
override

Streams the output of invoking the Runnable on the given input.

  • input - the input to invoke the Runnable on.
  • options - the options to use when invoking the Runnable.

Implementation

@override
Stream<RunOutput> stream(final RunInput input, {final CallOptions? options}) {
  return bound.stream(
    input,
    options: options ?? this.options,
  );
}