Package org.apache.tapestry5.func
Class LazyContinuation<T>
java.lang.Object
org.apache.tapestry5.func.LazyContinuation<T>
The result of the evaluation of a
LazyFunction
.- Since:
- 5.2.0
-
Constructor Summary
ConstructorsConstructorDescriptionLazyContinuation
(LazyValue<T> nextValue, LazyFunction<T> nextFunction) LazyContinuation
(T nextValue, LazyFunction<T> nextFunction) -
Method Summary
Modifier and TypeMethodDescriptionReturns a new lazy function that will return the next continuation.Returns, indirectly, the next value computed by the lazy function.
-
Constructor Details
-
LazyContinuation
-
LazyContinuation
-
-
Method Details
-
nextValue
Returns, indirectly, the next value computed by the lazy function. The LazyValue represents a deferred computation. -
nextFunction
Returns a new lazy function that will return the next continuation.
-