We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, what about writing an adapter for the kotlin coroutine compatibility?
package com.demo.feign import kotlinx.coroutines.flow.Flow import org.springframework.web.bind.annotation.GetMapping import reactivefeign.spring.config.ReactiveFeignClient import reactor.core.publisher.Flux import reactor.core.publisher.Mono @ReactiveFeignClient( name = "helloClient", url = "http://localhost:8080" ) interface HelloClient { @GetMapping("/hello") fun helloMono(): Mono<String> @GetMapping("/hello") suspend fun helloKotlinMono(): String @GetMapping("/hello") fun helloFlux(): Flux<String> @GetMapping("/hello") fun helloKotlinFlux(): Flow<String> }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, what about writing an adapter for the kotlin coroutine compatibility?
The text was updated successfully, but these errors were encountered: