You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**What changed?**
Added a paginated workflow task completion API:
- `page_number` and `intermediate_page` fields on
`RespondWorkflowTaskCompletedRequest`, letting a workflow task
completion be split across multiple "page" requests sharing one task
token.
- `workflow_task_completion_pagination` namespace capability flag that
SDKs must check before sending paginated requests.
- `WorkflowTaskCompletionBufferLostFailure` signaling the server dropped
buffered pages and the client should resend all pages from page 0.
**Why?**
Large workflow task completions can exceed request size limits.
Pagination lets workers split a single completion across multiple
requests.
**Breaking changes**
None. New fields/messages are additive; pagination is gated behind the
namespace capability.
**Server PR**
TODO
0 commit comments