PR feedback fixes

This commit is contained in:
Shyju Krishnankutty
2026-02-17 18:02:34 -08:00
parent 8ffe7e6092
commit 3248060903
9 changed files with 1230 additions and 17 deletions
@@ -84,4 +84,12 @@ internal sealed class DurableWorkflowClient : IWorkflowClient
return new DurableStreamingWorkflowRun(this._client, instanceId, workflow);
}
/// <inheritdoc/>
public ValueTask<IStreamingWorkflowRun> StreamAsync(
Workflow workflow,
string input,
string? runId = null,
CancellationToken cancellationToken = default)
=> this.StreamAsync<string>(workflow, input, runId, cancellationToken);
}