All Downloads are FREE. Search and download functionalities are using the official Maven repository.

reactivefeign.benchmarks.FeignReactorTestInterface Maven / Gradle / Ivy

package reactivefeign.benchmarks;

import feign.Headers;
import feign.RequestLine;
import reactor.core.publisher.Mono;

import java.util.Map;

import static reactivefeign.benchmarks.RealRequestBenchmarks.PATH_WITH_PAYLOAD;

@Headers("Accept: application/json")
interface FeignReactorTestInterface {

  @RequestLine("GET /")
  Mono justGet();

  @RequestLine("POST "+PATH_WITH_PAYLOAD)
  Mono> postWithPayload(Mono> payload);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy