Interface Task.SubscribedOrchestration<T>

Type Parameters:
T - the type of results produced by a Task
All Known Subinterfaces:
Task.Orchestration<T>
Enclosing interface:
Task<T>

public static interface Task.SubscribedOrchestration<T>
Defines the subset of Task.Orchestration methods which are permitted after subscribe(Subscriber) is called. Once subscribe(Subscriber) is called, only two methods are permitted: more subscribe(Subscriber) calls, or submit().
See Also: