type of the sub results
type of the end result
Creates a new, generic parallel stream
the executor function that gets passed the next, resolve and reject functions
Registered handlers that should be called for each sub result
Creates a new parallel stream for the given set of tasks.
type of the task results
result of the created stream. Created by applying the end results of the stream to the joiner
the set of tasks that compute the results of the stream
the default result
the joiner to use to join two computed task results
stream for the given set of tasks
Creates a new parallel that is based on the given input stream but transforms the end result using the given transformer
type of the input elements for this stream
type of the end results from the input stream
end result after applying the transformer.
the input stream on which the returned stream is based on
the transformer used to transform the end result
parallel stream that is based on the given input stream but with the transformed end result
Generated using TypeDoc
Generic parallel stream that can be coordinated using the provided next, resolve and reject callbacks.