ClientResponseExtensions.kt 3.2 KB
Newer Older
1
/*
2
 * Copyright 2002-2019 the original author or authors.
3 4 5 6 7 8 9 10 11 12 13 14 15 16
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

17 18
package org.springframework.web.reactive.function.client

19
import kotlinx.coroutines.reactive.awaitSingle
20
import org.springframework.core.ParameterizedTypeReference
21
import org.springframework.http.ResponseEntity
22 23 24
import reactor.core.publisher.Flux
import reactor.core.publisher.Mono

25
/**
26
 * Extension for [ClientResponse.bodyToMono] providing a `bodyToMono<Foo>()` variant
27 28
 * leveraging Kotlin reified type parameters. This extension is not subject to type
 * erasure and retains actual generic type arguments.
29 30 31 32
 *
 * @author Sebastien Deleuze
 * @since 5.0
 */
33 34
inline fun <reified T : Any> ClientResponse.bodyToMono(): Mono<T> =
		bodyToMono(object : ParameterizedTypeReference<T>() {})
35 36

/**
37
 * Extension for [ClientResponse.bodyToFlux] providing a `bodyToFlux<Foo>()` variant
38 39
 * leveraging Kotlin reified type parameters. This extension is not subject to type
 * erasure and retains actual generic type arguments.
40 41 42 43
 *
 * @author Sebastien Deleuze
 * @since 5.0
 */
44 45
inline fun <reified T : Any> ClientResponse.bodyToFlux(): Flux<T> =
		bodyToFlux(object : ParameterizedTypeReference<T>() {})
46 47

/**
48
 * Extension for [ClientResponse.toEntity] providing a `toEntity<Foo>()` variant
49 50
 * leveraging Kotlin reified type parameters. This extension is not subject to type
 * erasure and retains actual generic type arguments.
51 52 53 54
 *
 * @author Sebastien Deleuze
 * @since 5.0
 */
55 56
inline fun <reified T : Any> ClientResponse.toEntity(): Mono<ResponseEntity<T>> =
		toEntity(object : ParameterizedTypeReference<T>() {})
57 58

/**
59
 * Extension for [ClientResponse.toEntityList] providing a `bodyToEntityList<Foo>()` variant
60 61
 * leveraging Kotlin reified type parameters. This extension is not subject to type
 * erasure and retains actual generic type arguments.
62 63 64 65
 *
 * @author Sebastien Deleuze
 * @since 5.0
 */
66 67
inline fun <reified T : Any> ClientResponse.toEntityList(): Mono<ResponseEntity<List<T>>> =
		toEntityList(object : ParameterizedTypeReference<T>() {})
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94

/**
 * Coroutines variant of [ClientResponse.bodyToMono].
 *
 * @author Sebastien Deleuze
 * @since 5.2
 */
suspend inline fun <reified T : Any> ClientResponse.awaitBody(): T =
		bodyToMono<T>().awaitSingle()

/**
 * Coroutines variant of [ClientResponse.toEntity].
 *
 * @author Sebastien Deleuze
 * @since 5.2
 */
suspend inline fun <reified T : Any> ClientResponse.awaitEntity(): ResponseEntity<T> =
		toEntity<T>().awaitSingle()

/**
 * Coroutines variant of [ClientResponse.toEntityList].
 *
 * @author Sebastien Deleuze
 * @since 5.2
 */
suspend inline fun <reified T : Any> ClientResponse.awaitEntityList(): ResponseEntity<List<T>> =
		toEntityList<T>().awaitSingle()