stream method
Streams the output of invoking the Runnable on the given input
.
Implementation
@override
Stream<RunOutput> stream(
final RunInput input, {
final RunnableOptions? options,
}) async* {
final runnable = await router.call(input, options);
yield* runnable.stream(input, options: options);
}