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(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(Class<? extends 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(Action<? super Chain> handlers) |
A factory for decorator impls that effectively inserts the given chain before the “rest” of the handlers.
|