Uses of Interface
org.apache.tapestry5.func.Worker
-
Packages that use Worker Package Description org.apache.tapestry5.func Light-weight functional programming for Flows of valuesorg.apache.tapestry5.internal.util [INTERNAL USE ONLY] various utility classes; API subject to change. -
-
Uses of Worker in org.apache.tapestry5.func
Methods in org.apache.tapestry5.func that return Worker Modifier and Type Method Description static <T> Worker<T>
F. <T> coll)
A Worker factory; the returnedWorker adds the values to a provided collection.static <T> Worker<T>
F. combine(Worker<? super T>... delegates)
Combines several compatible workers together into a composite.Methods in org.apache.tapestry5.func with parameters of type Worker Modifier and Type Method Description static <T> Worker<T>
F. combine(Worker<? super T>... delegates)
Combines several compatible workers together into a composite.FT
FlowOperations. each(Worker<? super T> worker)
Applies the worker to each element in the Flow, then returns the flow for further behaviors. -
Uses of Worker in org.apache.tapestry5.internal.util
Methods in org.apache.tapestry5.internal.util with parameters of type Worker Modifier and Type Method Description void
NamedSet. eachValue(Worker<T> worker)
Iterates over the values, passing each in turn to the supplied worker.
-