* This function is called after each response, offering an * opportunity to provide client-level throttling or updating * response data. * * Any error thrown in this causes the ``send()`` to throw. * * To schedule a retry attempt (assuming the maximum retry limit
()
| 352 | * has not been reached), use [[response.throwThrottleError]]. |
| 353 | */ |
| 354 | get processFunc() { |
| 355 | return this.#process || null; |
| 356 | } |
| 357 | set processFunc(process) { |
| 358 | this.#process = process; |
| 359 | } |