T - Either a String or a SanitizedContent object.public static interface SoySauce.Continuation<T>
See SoySauce.Renderer.render(AdvisingAppendable), and SoySauce.WriteContinuation for
similar APIs designed for rendering to output streams.
| Modifier and Type | Method and Description |
|---|---|
SoySauce.Continuation<T> |
continueRender()
Continues rendering if the prior render operation didn't complete.
|
T |
get()
The final value of the rendering operation.
|
RenderResult |
result()
The result of the prior rendering operation.
|
RenderResult result()
T get()
IllegalStateException@CheckReturnValue SoySauce.Continuation<T> continueRender()
This method has the same contract as SoySauce.Renderer.render(AdvisingAppendable) for the
return value.
IllegalStateException - if this continuation is already complete, i.e. result().isDone() is true, or if this method has already been called.