public final class RenderResult extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
RenderResult.Type
The result type.
|
| Modifier and Type | Method and Description |
|---|---|
static RenderResult |
continueAfter(Future<?> future)
|
static RenderResult |
done()
|
boolean |
equals(Object obj) |
Future<?> |
future()
Returns the future that soy is waiting for.
|
int |
hashCode() |
boolean |
isDone()
Returns
true if the result is done. |
static RenderResult |
limited()
|
String |
toString() |
RenderResult.Type |
type()
Returns the
RenderResult.Type of this result. |
public static RenderResult done()
public static RenderResult limited()
public static RenderResult continueAfter(Future<?> future)
public RenderResult.Type type()
RenderResult.Type of this result.public boolean isDone()
true if the result is done.public Future<?> future()
IllegalStateException - if type() is not RenderResult.Type.DETACH.