Next returns the next response or an error if one is available. It always prefers an error over a response.
(context.Context)
| 13 | type Responses[T any] interface { |
| 14 | // Next returns the next response or an error if one is available. It always prefers an error over a response. |
| 15 | Next(context.Context) (T, bool, error) // bool = done |
| 16 | } |
| 17 | |
| 18 | var _ Responses[combiner.PipelineResponse] = syncResponse{} |
no outgoing calls