stream method
Streams the output of invoking the Runnable on the given input
.
Implementation
Stream<RunOutput> stream(
final RunInput input, {
final CallOptions? options,
}) async* {
// By default, it just emits the result of calling `.invoke`
// Subclasses should override this method if they support streaming output
yield await invoke(input, options: options);
}