Interface TaskFactory<Output>
- Type Parameters:
Output- The type of data returned by a task created by this factory.
public interface TaskFactory<Output>
A factory for creating fresh copies of a task. All tasks created by a factory must be observationally equivalent.
-
Method Summary
Modifier and TypeMethodDescriptiondefault <NewOutput>
TaskFactory<NewOutput> andThen(TaskFactory<NewOutput> task) static TaskFactory<Unit>
-
Method Details
-
create
-
delaying
-
andThen
-