Uses of Class
ratpack.api.NonBlocking
-
Packages that use NonBlocking Package Description ratpack.error Types that deal with handling application errors.ratpack.exec The execution management.ratpack.handling The handling of application requests.ratpack.http The HTTP protocol.ratpack.render The renderer framework provides a pluggable mechanism for serializing objects to the response.ratpack.server Objects used to start a ratpack application.ratpack.service Services participate in the application start/stop lifecycle.ratpack.websocket Support for Websockets. -
-
Uses of NonBlocking in ratpack.error
Classes in ratpack.error with annotations of type NonBlocking Modifier and Type Interface Description interfaceServerErrorHandlerAn object that can deal with errors that occur during the processing of an exchange. -
Uses of NonBlocking in ratpack.exec
Classes in ratpack.exec with annotations of type NonBlocking Modifier and Type Interface Description interfaceExecStarterStarts a newExecution.interfaceOperationA logical operation.Method parameters in ratpack.exec with annotations of type NonBlocking Modifier and Type Method Description default OperationOperation. mapError(Action<? super java.lang.Throwable> action)Convert an error to a success or different error.default Promise<T>Promise. next(Action<? super T> action)Executes the provided, potentially asynchronous,Actionwith the promised value as input.default Promise<T>Promise. onError(Predicate<? super java.lang.Throwable> predicate, Action<? super java.lang.Throwable> errorHandler)Specifies the action to take if the an error occurs trying to produce the promised value, that the given predicate applies to.default OperationPromise. operation(Action<? super T> action)Converts this promise to an operation which is effectivelyaction.default Promise<T>Promise. retry(int maxAttempts, java.time.Duration delay, BiAction<? super java.lang.Integer,? super java.lang.Throwable> onError)Deprecated.since 1.7, usePromise.retry(RetryPolicy, BiAction) -
Uses of NonBlocking in ratpack.handling
Classes in ratpack.handling with annotations of type NonBlocking Modifier and Type Interface Description interfaceContextThe context of an individualHandlerinvocation.interfaceHandlerA handler participates in the processing of a request/response pair, operating on aContext. -
Uses of NonBlocking in ratpack.http
Classes in ratpack.http with annotations of type NonBlocking Modifier and Type Interface Description interfaceResponseA response to a request.Method parameters in ratpack.http with annotations of type NonBlocking Modifier and Type Method Description ResponseResponse. beforeSend(Action<? super Response> responseFinalizer)Register a callback to execute with the response immediately before sending it to the client. -
Uses of NonBlocking in ratpack.render
Methods in ratpack.render with annotations of type NonBlocking Modifier and Type Method Description voidRenderer. render(Context context, T object)Render the given object to the response. -
Uses of NonBlocking in ratpack.server
Classes in ratpack.server with annotations of type NonBlocking Modifier and Type Interface Description interfaceServiceDeprecated.since 1.3interfaceStopperThe mechanism for stopping the application from within the application. -
Uses of NonBlocking in ratpack.service
Classes in ratpack.service with annotations of type NonBlocking Modifier and Type Interface Description interfaceServiceA service participates in the application lifecycle. -
Uses of NonBlocking in ratpack.websocket
Classes in ratpack.websocket with annotations of type NonBlocking Modifier and Type Interface Description interfaceWebSocket
-