Uses of Class
tech.greenfield.vertx.irked.Request
-
Packages that use Request Package Description tech.greenfield.vertx.irked tech.greenfield.vertx.irked.auth tech.greenfield.vertx.irked.websocket -
-
Uses of Request in tech.greenfield.vertx.irked
Fields in tech.greenfield.vertx.irked with type parameters of type Request Modifier and Type Field Description protected Function<Request,Request>RouteConfiguration. routingContextResolverprotected Function<Request,Request>RouteConfiguration. routingContextResolverprotected Function<io.vertx.ext.web.RoutingContext,Request>RequestWrapper. wrapperMethods in tech.greenfield.vertx.irked that return Request Modifier and Type Method Description RequestRequestWrapper. apply(io.vertx.ext.web.RoutingContext r)protected RequestController. getRequestContext(Request request)Controller implementations should override this to generate local request implementation (wrapped routing contexts).protected RequestRouteConfiguration. resolveRequestContext(Request r)Try to resolve the handler requested routing context type by instantiating the requested type if needed.RequestRequest. setJsonEncoding(boolean usePrettyEncoder)Set the built-in JSON encoding behavior of Request to use either theJson.encodePrettily(Object)behavior instead of the standard compact encoding, or not.RequestRequest. setSpecificFailure(Throwable failure)Store a specific exception type, supposedly that was found by am@OnFail(exception)processor so it can be efficiently retrieved byfindFailure(Class).Methods in tech.greenfield.vertx.irked that return types with arguments of type Request Modifier and Type Method Description protected Function<Request,Request>RouteConfiguration. findRoutingContextResolver()Check if we can statically locate an appropriate routing context supplier in the controller implementation.protected Function<Request,Request>RouteConfiguration. findRoutingContextResolver()Check if we can statically locate an appropriate routing context supplier in the controller implementation.Methods in tech.greenfield.vertx.irked with parameters of type Request Modifier and Type Method Description protected RequestController. getRequestContext(Request request)Controller implementations should override this to generate local request implementation (wrapped routing contexts).protected voidRouteConfiguration. handleUserException(Request r, Throwable cause, String invocationDescription)Handling logic for user exceptions thrown from a handler invocation.protected RequestRouteConfiguration. resolveRequestContext(Request r)Try to resolve the handler requested routing context type by instantiating the requested type if needed.Constructor parameters in tech.greenfield.vertx.irked with type arguments of type Request Constructor Description RequestWrapper(io.vertx.core.Handler<? super Request> handler, Function<io.vertx.ext.web.RoutingContext,Request> requestWrapper)RequestWrapper(io.vertx.core.Handler<? super Request> handler, Function<io.vertx.ext.web.RoutingContext,Request> requestWrapper)RequestWrapper(Function<io.vertx.ext.web.RoutingContext,Request> parent)Helper c'tor for extensions that want to provide their own handlingRequestWrapper(Controller ctr, Function<io.vertx.ext.web.RoutingContext,Request> requestWrapper) -
Uses of Request in tech.greenfield.vertx.irked.auth
Methods in tech.greenfield.vertx.irked.auth with parameters of type Request Modifier and Type Method Description booleanDigestAuthorizationToken. validateResponse(String password, Request req)Check if the response value provided in the token is valid considering the provided password, method and optional body. -
Uses of Request in tech.greenfield.vertx.irked.websocket
Methods in tech.greenfield.vertx.irked.websocket that return Request Modifier and Type Method Description RequestWebSocketConnection. request()Retrieve the IrkedRequestobject that originated this WebSocket connectionRequestWebSocketMessage. request()Retrieve the request that was upgraded to the WebSocketConstructors in tech.greenfield.vertx.irked.websocket with parameters of type Request Constructor Description WebSocketConnection(Request request, io.vertx.core.Handler<? super WebSocketMessage> handler)WebSocketMessage(Request request, io.vertx.core.http.ServerWebSocket socket, io.vertx.core.buffer.Buffer buffer)Contextual constructor that knows where the message came fromWebSocketMessage(Request request, io.vertx.core.http.ServerWebSocket socket, String text)Cheat constructor for text messages.
-