stream method
Streams the output of invoking the Runnable on the given input
.
Implementation
@override
Stream<RunOutput> stream(final RunInput input, {final CallOptions? options}) {
return bound.stream(
input,
options: options ?? this.options,
);
}