Package | Description |
---|---|
ratpack.handling |
The handling of application requests.
|
ratpack.remote |
Integration with Groovy Remote Control.
|
Modifier and Type | Method and Description |
---|---|
static HandlerDecorator |
ResponseTimer.decorator()
Creates a handler decorator that prepends a response timer to the rest of the handlers.
|
static HandlerDecorator |
HandlerDecorator.noop()
A handler decorator implementation that does not decorate the handler.
|
static HandlerDecorator |
HandlerDecorator.prepend(java.lang.Class<? extends Handler> handler)
A factory for decorator impls that effectively inserts the given handler before the “rest” of the handlers.
|
static HandlerDecorator |
HandlerDecorator.prepend(Handler handler)
A factory for decorator impls that effectively inserts the given handler before the “rest” of the handlers.
|
static HandlerDecorator |
HandlerDecorator.prependHandlers(Action<? super Chain> handlers)
A factory for decorator impls that effectively inserts the given chain before the “rest” of the handlers.
|
static HandlerDecorator |
HandlerDecorator.prependHandlers(java.lang.Class<? extends Action<? super Chain>> handlers)
A factory for decorator impls that effectively inserts the given chain before the “rest” of the handlers.
|
Modifier and Type | Method and Description |
---|---|
static HandlerDecorator |
RemoteControl.handlerDecorator() |
static HandlerDecorator |
RemoteControl.handlerDecorator(java.lang.String path) |