Start a new stream run against the custom transport.
This is the low-level submit entry point that handles thread ID resolution, optimistic value merging, and transport invocation. Prefer submit unless you need to bypass higher-level wrappers.
submitDirect(
values: GetUpdateType<Bag, StateType> | null | undefined,
submitOptions: CustomSubmitOptions<StateType, GetConfigurableType<Bag>>
): Promise<void>| Name | Type | Description |
|---|---|---|
values* | GetUpdateType<Bag, StateType> | null | undefined | The input values to send, or |
submitOptions | CustomSubmitOptions<StateType, GetConfigurableType<Bag>> | Optional per-call overrides such as
|