retrieveList

inline fun <T : Any> BlockingHttpClient.retrieveList(request: HttpRequest<Any>): List<T>

Perform an HTTP request for the given request object emitting the full HTTP response from returned Publisher and converting the response body to a list of the specified type.

Return

The response from the client as an instance of List

Author

Will Buck

Since

1.0.0

Parameters

T

The argument type

request

The HttpRequest you want to perform