Uses of Interface
ratpack.core.render.RenderableDecorator
-
Packages that use RenderableDecorator Package Description ratpack.core.render The renderer framework provides a pluggable mechanism for serializing objects to the response. -
-
Uses of RenderableDecorator in ratpack.core.render
Classes in ratpack.core.render that implement RenderableDecorator Modifier and Type Class Description class
RenderableDecoratorSupport<T>
A convenience base class forRenderableDecorator
implementations.Methods in ratpack.core.render that return RenderableDecorator Modifier and Type Method Description static <T> RenderableDecorator<T>
RenderableDecorator. of(Class<T> type, BiFunction<? super Context,? super T,? extends T> impl)
Creates a renderable decorator implementation for the given type that uses the function as decorator.static <T> RenderableDecorator<T>
RenderableDecorator. ofAsync(Class<T> type, BiFunction<? super Context,? super T,? extends Promise<T>> impl)
Creates a renderable decorator implementation for the given type that uses the function as decorator.Methods in ratpack.core.render that return types with arguments of type RenderableDecorator Modifier and Type Method Description static <T> com.google.common.reflect.TypeToken<RenderableDecorator<T>>
RenderableDecorator. typeOf(Class<T> type)
Creates a type token for a decorator of objects of the given type.
-