submitAll<Q, R> abstract method

List<Future<R>> submitAll<Q, R>(
  1. Job<Q, R> job
)

submits the given function and value to all isolates in the executor, useful for cases where state must be set up in isolates prior to executing jobs

Implementation

List<Future<R>> submitAll<Q, R>(Job<Q, R> job);