Uses of Class
org.logdoc.fairhttp.service.api.helpers.Route
-
Packages that use Route Package Description org.logdoc.fairhttp.service org.logdoc.fairhttp.service.api.helpers org.logdoc.fairhttp.service.http -
-
Uses of Route in org.logdoc.fairhttp.service
Methods in org.logdoc.fairhttp.service with parameters of type Route Modifier and Type Method Description static voidDI. endpoints(Route... routes) -
Uses of Route in org.logdoc.fairhttp.service.api.helpers
Methods in org.logdoc.fairhttp.service.api.helpers that return Route 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 Route in org.logdoc.fairhttp.service.http
Methods in org.logdoc.fairhttp.service.http with parameters of type Route Modifier and Type Method Description voidServer. addEndpoint(Route route)Method parameters in org.logdoc.fairhttp.service.http with type arguments of type Route Modifier and Type Method Description voidServer. addEndpoints(Collection<Route> endpoints)
-