Uses of Class
org.logdoc.fairhttp.service.http.Request
-
-
Uses of Request in org.logdoc.fairhttp.service.api.helpers
Fields in org.logdoc.fairhttp.service.api.helpers with type parameters of type Request Modifier and Type Field Description BiFunction<Request,Map<String,String>,?>Route. callbackMethods in org.logdoc.fairhttp.service.api.helpers with parameters of type Request Modifier and Type Method Description booleanRoute. shouldBreak(Request request, Map<String,String> pathMap)Method parameters in org.logdoc.fairhttp.service.api.helpers with type arguments of type Request Modifier and Type Method Description static RouteRoute. async(String method, String endpoint, BiFunction<Request,Map<String,String>,CompletionStage<Response>> callback)static RouteRoute. async(Route.Method method, String endpoint, BiFunction<Request,Map<String,String>,CompletionStage<Response>> callback)RouteRoute. breakIf(BiFunction<Request,Map<String,String>,Boolean> breakIfPredicate, Response breakWithResponse)Adds condition with when successfully applied may interrupt request with given response, before any call is made to business logicstatic RouteRoute. sync(String method, String endpoint, BiFunction<Request,Map<String,String>,Response> callback)static RouteRoute. sync(Route.Method method, String endpoint, BiFunction<Request,Map<String,String>,Response> callback) -
Uses of Request in org.logdoc.fairhttp.service.api.helpers.endpoint
Methods in org.logdoc.fairhttp.service.api.helpers.endpoint with parameters of type Request Modifier and Type Method Description ResponseEndpoint. call(Request request)Constructor parameters in org.logdoc.fairhttp.service.api.helpers.endpoint with type arguments of type Request Constructor Description Endpoint(String method, Signature signature, BiFunction<Request,Map<String,String>,Response> invoker) -
Uses of Request in org.logdoc.fairhttp.service.api.helpers.endpoint.invokers
Methods in org.logdoc.fairhttp.service.api.helpers.endpoint.invokers with parameters of type Request Modifier and Type Method Description ResponseARequestInvoker. apply(Request request, Map<String,String> pathMap)protected Object[]AResolvingInvoker. prepareResolvers(Request request, Map<String,String> pathMap)protected abstract Supplier<Response>ARequestInvoker. supplyAction(Request request, Map<String,String> pathMap)protected Supplier<Response>DirectInvoker. supplyAction(Request request, Map<String,String> pathMap)protected Supplier<Response>DirectUnresolvingInvoker. supplyAction(Request request, Map<String,String> pathMap)protected Supplier<Response>IndirectInvoker. supplyAction(Request request, Map<String,String> pathMap)protected Supplier<Response>IndirectUnresolvingInvoker. supplyAction(Request request, Map<String,String> pathMap)Constructor parameters in org.logdoc.fairhttp.service.api.helpers.endpoint.invokers with type arguments of type Request Constructor Description AResolvingInvoker(Method method, List<BiFunction<Request,Map<String,String>,?>> resolvers, Function<Throwable,Response> errorHandler, int execTimeout)DirectInvoker(Method method, List<BiFunction<Request,Map<String,String>,?>> resolvers, Function<Throwable,Response> errorHandler, int execTimeout)IndirectInvoker(Method method, List<BiFunction<Request,Map<String,String>,?>> resolvers, Function<Throwable,Response> errorHandler, int execTimeout) -
Uses of Request in org.logdoc.fairhttp.service.http
Methods in org.logdoc.fairhttp.service.http with parameters of type Request Modifier and Type Method Description static WSBuilderWSBuilder. from(Request request)
-