AbstractStreamingResponseSpecification
abstract class AbstractStreamingResponseSpecification<P : Any, T : Any, R : Any>(var responseFlow: Flow<T>?, var responseChunks: List<T>?, var delayBetweenChunks: Duration = Duration.ZERO, delay: Duration = Duration.ZERO) : AbstractResponseSpecification<P, R> , StreamingResponseSpecification<T> (source)
Type Parameters
P
The type of the request body.
T
The type of the chunk element.
R
The type of the response chunk.